mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 16:46:22 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
14
lib/models/space/night.dart
Normal file
14
lib/models/space/night.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user