mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 09:53:12 +00:00
10 lines
121 B
Dart
10 lines
121 B
Dart
class Price {
|
|
Price({
|
|
required this.value,
|
|
required this.currency,
|
|
});
|
|
|
|
double value;
|
|
String currency;
|
|
}
|