cleaups and content page refresh (in progress)
[outofuni/tavern2.git] / lib / product_category.dart
index 3e99981..67ef684 100644 (file)
@@ -1,9 +1,8 @@
 class ProductCategory {
-       String doc_id;
-       String name;
        String id;
-       String doc_type;
+       String name;
+       String type;
 
-       ProductCategory(this.doc_id,this.name,this.id,this.doc_type);
+       ProductCategory(this.id,this.name,this.type);
 }