mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
@@ -6,16 +6,16 @@ part 'space_archive.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class SpaceArchive {
|
||||
int? code;
|
||||
String? message;
|
||||
int? ttl;
|
||||
Data? data;
|
||||
int? code;
|
||||
String? message;
|
||||
int? ttl;
|
||||
SpaceArchiveData? data;
|
||||
|
||||
SpaceArchive({this.code, this.message, this.ttl, this.data});
|
||||
SpaceArchive({this.code, this.message, this.ttl, this.data});
|
||||
|
||||
factory SpaceArchive.fromJson(Map<String, dynamic> json) {
|
||||
return _$SpaceArchiveFromJson(json);
|
||||
}
|
||||
factory SpaceArchive.fromJson(Map<String, dynamic> json) {
|
||||
return _$SpaceArchiveFromJson(json);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() => _$SpaceArchiveToJson(this);
|
||||
Map<String, dynamic> toJson() => _$SpaceArchiveToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user