Files
fcs/lib/vo/fcs_profile.dart

20 lines
325 B
Dart
Raw Normal View History

2020-05-29 15:54:26 +06:30
class FCSProfile {
String id;
String usaAddress;
String mmAddress;
String usaContactNumber;
String mmContactNumber;
String mail;
String facebook;
FCSProfile({
this.id,
this.usaAddress,
this.mmAddress,
this.usaContactNumber,
this.mmContactNumber,
this.mail,
this.facebook,
});
}