blob: 26a5a06402199f0fcf9fcae5d171439282769024 (
plain) (
tree)
|
|
package Settings;
import android.net.Uri;
class Acknowledgement {
private String name;
private String introduction;
private Uri link;
Acknowledgement(String name, String introduction, Uri link) {
this.name = name;
this.introduction = introduction;
this.link = link;
}
public String getName() {
return name;
}
public String getIntroduction() {
return introduction;
}
public Uri getLink() {
return link;
}
}
|