mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
14 lines
272 B
Dart
14 lines
272 B
Dart
class Owner {
|
|
int? mid;
|
|
String? name;
|
|
String? face;
|
|
|
|
Owner({this.mid, this.name, this.face});
|
|
|
|
factory Owner.fromJson(Map<String, dynamic> json) => Owner(
|
|
mid: json['mid'] as int?,
|
|
name: json['name'] as String?,
|
|
face: json['face'] as String?,
|
|
);
|
|
}
|