initial checkin
[outofuni/tavern2.git] / lib / product.dart
1 class Product {
2         String id;
3         String name;
4         double price;
5         String type;
6         String category;
7
8         Product(this.id,this.name,this.price,this.type,this.category);
9 }