mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
21 lines
389 B
Dart
21 lines
389 B
Dart
class BlackListItem {
|
|
int? mid;
|
|
int? mtime;
|
|
String? uname;
|
|
String? face;
|
|
|
|
BlackListItem({
|
|
this.mid,
|
|
this.mtime,
|
|
this.uname,
|
|
this.face,
|
|
});
|
|
|
|
factory BlackListItem.fromJson(Map<String, dynamic> json) => BlackListItem(
|
|
mid: json['mid'] as int?,
|
|
mtime: json['mtime'] as int?,
|
|
uname: json['uname'] as String?,
|
|
face: json['face'] as String?,
|
|
);
|
|
}
|