mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-02 09:08:17 +08:00
feat: like count (#1640)
This commit is contained in:
committed by
GitHub
parent
71a170deb5
commit
6e1ceb1277
@@ -11,9 +11,16 @@ class VideoDanmaku extends DanmakuExtra {
|
||||
@override
|
||||
final String mid;
|
||||
|
||||
int like;
|
||||
|
||||
bool isLike;
|
||||
|
||||
VideoDanmaku({required this.id, required this.mid, this.isLike = false});
|
||||
VideoDanmaku({
|
||||
required this.id,
|
||||
required this.mid,
|
||||
this.like = 0,
|
||||
this.isLike = false,
|
||||
});
|
||||
}
|
||||
|
||||
class LiveDanmaku extends DanmakuExtra {
|
||||
|
||||
Reference in New Issue
Block a user