mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 00:10:32 +05:30
23 lines
882 B
Java
23 lines
882 B
Java
package com.github.libretube.obj;
|
|
|
|
public class Comment {
|
|
public String author, thumbnail, commentId, commentText, commentedTime, commentorUrl, repliesPage;
|
|
public int likeCount;
|
|
public boolean hearted, pinned, verified;
|
|
|
|
public Comment(String author, String thumbnail, String commentId, String commentText, String commentedTime,
|
|
String commentorUrl, String repliesPage, int likeCount, boolean hearted, boolean pinned, boolean verified) {
|
|
this.author = author;
|
|
this.thumbnail = thumbnail;
|
|
this.commentId = commentId;
|
|
this.commentText = commentText;
|
|
this.commentedTime = commentedTime;
|
|
this.commentorUrl = commentorUrl;
|
|
this.repliesPage = repliesPage;
|
|
this.likeCount = likeCount;
|
|
this.hearted = hearted;
|
|
this.pinned = pinned;
|
|
this.verified = verified;
|
|
}
|
|
}
|