Files
fcs/lib/vo/payment_method.dart

17 lines
259 B
Dart
Raw Normal View History

2020-06-26 16:04:40 +06:30
class PaymentMethod {
String name;
String accountName;
String account;
String phone;
String mail;
2020-06-29 16:03:41 +06:30
String link;
2020-06-26 16:04:40 +06:30
PaymentMethod(
2020-06-29 16:03:41 +06:30
{this.name,
this.accountName,
this.account,
this.phone,
this.mail,
this.link});
2020-06-26 16:04:40 +06:30
}