Last change
on this file since d86edb7 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 | |
---|
1 | namespace 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.