blob: 26a5a06402199f0fcf9fcae5d171439282769024 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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;
}
}
|