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; } }