mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-03 08:39:46 +08:00
15
lib/models_new/member/search_archive/slist.dart
Normal file
15
lib/models_new/member/search_archive/slist.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
class ListTag {
|
||||
int? tid;
|
||||
int? count;
|
||||
String? name;
|
||||
String? specialType;
|
||||
|
||||
ListTag({this.tid, this.count, this.name, this.specialType});
|
||||
|
||||
factory ListTag.fromJson(Map<String, dynamic> json) => ListTag(
|
||||
tid: json['tid'] as int?,
|
||||
count: json['count'] as int?,
|
||||
name: json['name'] as String?,
|
||||
specialType: json['special_type'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user