Files
PiliPlus/lib/models_new/msg/msg_at/item.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

23 lines
667 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?,
);
}