Files
PiliPlus/lib/models_new/later/rights.dart
bggRGjQaUbCoE 0baf3fcd36 tweaks
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-12-16 15:56:54 +08:00

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