mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 23:56:13 +08:00
@@ -6,14 +6,14 @@ part 'space.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class Space {
|
||||
int? code;
|
||||
String? message;
|
||||
int? ttl;
|
||||
Data? data;
|
||||
int? code;
|
||||
String? message;
|
||||
int? ttl;
|
||||
SpaceData? data;
|
||||
|
||||
Space({this.code, this.message, this.ttl, this.data});
|
||||
Space({this.code, this.message, this.ttl, this.data});
|
||||
|
||||
factory Space.fromJson(Map<String, dynamic> json) => _$SpaceFromJson(json);
|
||||
factory Space.fromJson(Map<String, dynamic> json) => _$SpaceFromJson(json);
|
||||
|
||||
Map<String, dynamic> toJson() => _$SpaceToJson(this);
|
||||
Map<String, dynamic> toJson() => _$SpaceToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user