mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-22 11:30:13 +08:00
13
lib/models_new/space/space/purchase_button.dart
Normal file
13
lib/models_new/space/space/purchase_button.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user