67ef684c1e39181e970abf556ab12f2b4dfbccd4
[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