mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
15 lines
289 B
Dart
15 lines
289 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'night.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class Night {
|
|
String? argb;
|
|
|
|
Night({this.argb});
|
|
|
|
factory Night.fromJson(Map<String, dynamic> json) => _$NightFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$NightToJson(this);
|
|
}
|