mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-27 23:40:33 +05:30
17 lines
377 B
Java
17 lines
377 B
Java
package xyz.btcland.libretube.obj;
|
|
|
|
import java.util.List;
|
|
|
|
public class CommentsPage {
|
|
|
|
public List<Comment> comments;
|
|
public String nextpage;
|
|
public boolean disabled;
|
|
|
|
public CommentsPage(List<Comment> comments, String nextpage, boolean disabled) {
|
|
this.comments = comments;
|
|
this.nextpage = nextpage;
|
|
this.disabled = disabled;
|
|
}
|
|
}
|