mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 16:46:22 +08:00
12 lines
232 B
Dart
12 lines
232 B
Dart
class UidSetting {
|
|
int? id;
|
|
int? setting;
|
|
|
|
UidSetting({this.id, this.setting});
|
|
|
|
factory UidSetting.fromJson(Map<String, dynamic> json) => UidSetting(
|
|
id: json['id'] as int?,
|
|
setting: json['setting'] as int?,
|
|
);
|
|
}
|