mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
18 lines
295 B
Dart
18 lines
295 B
Dart
class Ogv {
|
|
String? typeName;
|
|
int? typeId;
|
|
int? seasonId;
|
|
|
|
Ogv({
|
|
this.typeName,
|
|
this.typeId,
|
|
this.seasonId,
|
|
});
|
|
|
|
factory Ogv.fromJson(Map<String, dynamic> json) => Ogv(
|
|
typeName: json['type_name'],
|
|
typeId: json['type_id'],
|
|
seasonId: json['season_id'],
|
|
);
|
|
}
|