TubeLab-App-Android/app/src/main/java/app/fedilab/fedilabtube/client/entities/PeertubeActorFollow.java

38 lines
772 B
Java

package app.fedilab.fedilabtube.client.entities;
public class PeertubeActorFollow {
private String id;
private PeertubeAccountNotification follower;
private PeertubeAccountNotification following;
public PeertubeActorFollow() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public PeertubeAccountNotification getFollower() {
return follower;
}
public void setFollower(PeertubeAccountNotification follower) {
this.follower = follower;
}
public PeertubeAccountNotification getFollowing() {
return following;
}
public void setFollowing(PeertubeAccountNotification following) {
this.following = following;
}
}