mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 10:06:23 +08:00
14 lines
276 B
Dart
14 lines
276 B
Dart
class PurchaseButton {
|
|
String? uri;
|
|
String? title;
|
|
|
|
PurchaseButton({this.uri, this.title});
|
|
|
|
factory PurchaseButton.fromJson(Map<String, dynamic> json) {
|
|
return PurchaseButton(
|
|
uri: json['uri'] as String?,
|
|
title: json['title'] as String?,
|
|
);
|
|
}
|
|
}
|