mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-09 11:37:51 +08:00
11
lib/models_new/sub/sub_detail/upper.dart
Normal file
11
lib/models_new/sub/sub_detail/upper.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class Upper {
|
||||
int? mid;
|
||||
String? name;
|
||||
|
||||
Upper({this.mid, this.name});
|
||||
|
||||
factory Upper.fromJson(Map<String, dynamic> json) => Upper(
|
||||
mid: json['mid'] as int?,
|
||||
name: json['name'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user