mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-28 06:15:51 +08:00
10 lines
262 B
Dart
10 lines
262 B
Dart
import 'package:PiliPlus/models/model_avatar.dart';
|
|
|
|
class OfficialVerify extends BaseOfficialVerify {
|
|
String? spliceTitle;
|
|
|
|
OfficialVerify.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
|
|
spliceTitle = json['splice_title'] as String?;
|
|
}
|
|
}
|