mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
14 lines
210 B
Dart
14 lines
210 B
Dart
class DanmakuPost {
|
|
DanmakuPost({
|
|
required this.dmid,
|
|
});
|
|
|
|
final int? dmid;
|
|
|
|
factory DanmakuPost.fromJson(Map<String, dynamic> json) {
|
|
return DanmakuPost(
|
|
dmid: json["dmid"],
|
|
);
|
|
}
|
|
}
|