mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-25 19:46:47 +08:00
10 lines
150 B
Dart
10 lines
150 B
Dart
class Day {
|
|
String? argb;
|
|
|
|
Day({this.argb});
|
|
|
|
factory Day.fromJson(Map<String, dynamic> json) => Day(
|
|
argb: json['argb'] as String?,
|
|
);
|
|
}
|