Files
PiliPlus/lib/models_new/msg/msg_at/item.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

23 lines
631 B
Dart

import 'package:PiliPlus/models_new/msg/msg_at/content.dart';
import 'package:PiliPlus/models_new/msg/msg_at/user.dart';
class MsgAtItem {
int? id;
User? user;
MsgAtContent? item;
int? atTime;
MsgAtItem({this.id, this.user, this.item, this.atTime});
factory MsgAtItem.fromJson(Map<String, dynamic> json) => MsgAtItem(
id: json['id'] as int?,
user: json['user'] == null
? null
: User.fromJson(json['user'] as Map<String, dynamic>),
item: json['item'] == null
? null
: MsgAtContent.fromJson(json['item'] as Map<String, dynamic>),
atTime: json['at_time'] as int?,
);
}