mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-09 11:37:51 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
13
lib/models/video_detail/argue_info.dart
Normal file
13
lib/models/video_detail/argue_info.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class ArgueInfo {
|
||||
String? argueMsg;
|
||||
int? argueType;
|
||||
String? argueLink;
|
||||
|
||||
ArgueInfo({this.argueMsg, this.argueType, this.argueLink});
|
||||
|
||||
factory ArgueInfo.fromJson(Map<String, dynamic> json) => ArgueInfo(
|
||||
argueMsg: json['argue_msg'] as String?,
|
||||
argueType: json['argue_type'] as int?,
|
||||
argueLink: json['argue_link'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user