cleaups and content page refresh (in progress)
[outofuni/tavern2.git] / lib / product_category.dart
1 class ProductCategory {
2         String id;
3         String name;
4         String type;
5
6         ProductCategory(this.id,this.name,this.type);
7 }
8