initial checkin
[outofuni/tavern2.git] / lib / product_category.dart
1 class ProductCategory {
2         String doc_id;
3         String name;
4         String id;
5         String doc_type;
6
7         ProductCategory(this.doc_id,this.name,this.id,this.doc_type);
8 }
9