source: resTools_backend/backend/Entities/Restaurant.cs@ 7a983b0

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

move files

  • Property mode set to 100644
File size: 340 bytes
Line 
1using Newtonsoft.Json;
2
3namespace backend.Entities
4{
5 public class Restaurant
6 {
7 public int Id { get; set; }
8 public int? OwnerFk { get; set; }
9 public virtual User Owner { get; set; }
10 public virtual ICollection<Reservation> Reservations { get; set; }
11 public string Name { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.