add FCS UI

This commit is contained in:
Thinzar Win
2020-12-01 19:02:21 +06:30
parent a2c9e41f55
commit 230e6f9e66
24 changed files with 2121 additions and 245 deletions

View File

@@ -0,0 +1,8 @@
class CartonSize {
String id;
String name;
double length;
double width;
double height;
CartonSize({this.id, this.name, this.length, this.width, this.height});
}