PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/activities/bugreport/model/github/GithubTarget.java

22 lines
421 B
Java
Raw Normal View History

2019-04-20 05:29:45 +00:00
package code.name.monkey.retromusic.activities.bugreport.model.github;
2018-12-06 10:23:03 +00:00
public class GithubTarget {
2020-10-06 08:46:04 +00:00
private final String repository;
2018-12-06 10:23:03 +00:00
2020-10-06 08:46:04 +00:00
private final String username;
2019-12-30 11:01:50 +00:00
2020-10-06 08:46:04 +00:00
public GithubTarget(String username, String repository) {
this.username = username;
this.repository = repository;
}
2018-12-06 10:23:03 +00:00
2020-10-06 08:46:04 +00:00
public String getRepository() {
return repository;
}
2019-12-30 11:01:50 +00:00
2020-10-06 08:46:04 +00:00
public String getUsername() {
return username;
}
2018-12-06 10:23:03 +00:00
}