source: resTools_backend/backend/Entities/MenuItem.cs@ 13f1472

Last change on this file since 13f1472 was 13f1472, checked in by Danilo <danilo.najkov@…>, 22 months ago

vip functionallity + menu fields + alergens filtering + google/fb login + email queueing

  • Property mode set to 100644
File size: 427 bytes
Line 
1namespace backend.Entities
2{
3 public class MenuItem
4 {
5 public int Id { get; set; }
6 public string Title { get; set; }
7 public string Description { get; set; }
8 public int Price { get; set; }
9 public byte[] Image { get; set; }
10 public bool IsVipOnly { get; set; }
11 public string Alergens { get; set; }
12 public virtual Restaurant Restaurant { get; set; }
13 }
14}
Note: See TracBrowser for help on using the repository browser.