mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 16:48:16 +08:00
13
lib/models_new/video/video_detail/argue_info.dart
Normal file
13
lib/models_new/video/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