mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
14 lines
371 B
Dart
14 lines
371 B
Dart
class ShareChannel {
|
|
String? name;
|
|
String? picture;
|
|
String? shareChannel;
|
|
|
|
ShareChannel({this.name, this.picture, this.shareChannel});
|
|
|
|
factory ShareChannel.fromJson(Map<String, dynamic> json) => ShareChannel(
|
|
name: json['name'] as String?,
|
|
picture: json['picture'] as String?,
|
|
shareChannel: json['share_channel'] as String?,
|
|
);
|
|
}
|