Files
PiliPlus/lib/models_new/later/owner.dart
bggRGjQaUbCoE 707d2f4b07 opt pages
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 18:39:02 +08:00

14 lines
288 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?,
);
}