mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
30 lines
546 B
Dart
30 lines
546 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'official_verify.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class OfficialVerify {
|
|
int? type;
|
|
String? desc;
|
|
int? role;
|
|
String? title;
|
|
String? icon;
|
|
@JsonKey(name: 'splice_title')
|
|
String? spliceTitle;
|
|
|
|
OfficialVerify({
|
|
this.type,
|
|
this.desc,
|
|
this.role,
|
|
this.title,
|
|
this.icon,
|
|
this.spliceTitle,
|
|
});
|
|
|
|
factory OfficialVerify.fromJson(Map<String, dynamic> json) {
|
|
return _$OfficialVerifyFromJson(json);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() => _$OfficialVerifyToJson(this);
|
|
}
|