16 lines
305 B
Dart
16 lines
305 B
Dart
class HealthSteam {
|
|
String type;
|
|
String valueInPercentage;
|
|
String goldInGram;
|
|
String goldPriceInTurkishLira;
|
|
String oneGramGoldPriceInLira;
|
|
|
|
HealthSteam({
|
|
this.type,
|
|
this.valueInPercentage,
|
|
this.goldInGram,
|
|
this.goldPriceInTurkishLira,
|
|
this.oneGramGoldPriceInLira,
|
|
});
|
|
}
|