source: resTools_backend/backend/Entities/MenuItem.cs@ cc4db18

Last change on this file since cc4db18 was cc4db18, checked in by Danilo <danilo.najkov@…>, 2 years ago

reservation module changes + contact module + menu module

  • Property mode set to 100644
File size: 296 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 virtual Restaurant Restaurant { get; set; }
10 }
11}
Note: See TracBrowser for help on using the repository browser.