mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
21 lines
471 B
Dart
21 lines
471 B
Dart
class MsgAtContent {
|
|
String? business;
|
|
String? image;
|
|
String? sourceContent;
|
|
String? nativeUri;
|
|
|
|
MsgAtContent({
|
|
this.business,
|
|
this.image,
|
|
this.sourceContent,
|
|
this.nativeUri,
|
|
});
|
|
|
|
factory MsgAtContent.fromJson(Map<String, dynamic> json) => MsgAtContent(
|
|
business: json['business'] as String?,
|
|
image: json['image'] as String?,
|
|
sourceContent: json['source_content'] as String?,
|
|
nativeUri: json['native_uri'] as String?,
|
|
);
|
|
}
|