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

47 lines
1.2 KiB
Java

package app.fedilab.fedilabtube.client.entities;
public class PeertubeComment {
private String id;
private String threadId;
private PeertubeVideoNotification peertubeVideoNotification;
private PeertubeAccountNotification peertubeAccountNotification;
public PeertubeComment() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getThreadId() {
return threadId;
}
public void setThreadId(String threadId) {
this.threadId = threadId;
}
public PeertubeVideoNotification getPeertubeVideoNotification() {
return peertubeVideoNotification;
}
public void setPeertubeVideoNotification(PeertubeVideoNotification peertubeVideoNotification) {
this.peertubeVideoNotification = peertubeVideoNotification;
}
public PeertubeAccountNotification getPeertubeAccountNotification() {
return peertubeAccountNotification;
}
public void setPeertubeAccountNotification(PeertubeAccountNotification peertubeAccountNotification) {
this.peertubeAccountNotification = peertubeAccountNotification;
}
}