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