mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 18:46:53 +08:00
chore: organize imports
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -4,13 +4,13 @@ part 'upper.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class Upper {
|
||||
int? mid;
|
||||
String? name;
|
||||
String? face;
|
||||
int? mid;
|
||||
String? name;
|
||||
String? face;
|
||||
|
||||
Upper({this.mid, this.name, this.face});
|
||||
Upper({this.mid, this.name, this.face});
|
||||
|
||||
factory Upper.fromJson(Map<String, dynamic> json) => _$UpperFromJson(json);
|
||||
factory Upper.fromJson(Map<String, dynamic> json) => _$UpperFromJson(json);
|
||||
|
||||
Map<String, dynamic> toJson() => _$UpperToJson(this);
|
||||
Map<String, dynamic> toJson() => _$UpperToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user