Files
fcs/lib/vo/payment_method.dart

11 lines
203 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;
PaymentMethod(
{this.name, this.accountName, this.account, this.phone, this.mail});
}