mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-08 02:57:47 +08:00
12 lines
195 B
Dart
12 lines
195 B
Dart
class Rights {
|
|
int? isSteinGate;
|
|
|
|
Rights({
|
|
this.isSteinGate,
|
|
});
|
|
|
|
factory Rights.fromJson(Map<String, dynamic> json) => Rights(
|
|
isSteinGate: json['is_stein_gate'] as int?,
|
|
);
|
|
}
|