add page of fcs

This commit is contained in:
PhyoThandar
2020-05-29 15:54:26 +06:30
parent bad27ba5c4
commit df0fd209e8
17 changed files with 1561 additions and 10 deletions

19
lib/vo/fcs_profile.dart Normal file
View File

@@ -0,0 +1,19 @@
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,
});
}