mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
12 lines
202 B
Dart
12 lines
202 B
Dart
class Rights {
|
|
int? isCooperation;
|
|
|
|
Rights({
|
|
this.isCooperation,
|
|
});
|
|
|
|
factory Rights.fromJson(Map<String, dynamic> json) => Rights(
|
|
isCooperation: json['is_cooperation'] as int?,
|
|
);
|
|
}
|