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