mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-03-17 12:04:49 +00:00
9 lines
121 B
Dart
9 lines
121 B
Dart
class Price {
|
|
Price({
|
|
required this.value,
|
|
required this.currency,
|
|
});
|
|
|
|
double value;
|
|
String currency;
|
|
}
|