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 json) => MsgAtItem( id: json['id'] as int?, user: json['user'] == null ? null : User.fromJson(json['user'] as Map), item: json['item'] == null ? null : MsgAtContent.fromJson(json['item'] as Map), atTime: json['at_time'] as int?, ); }