using Newtonsoft.Json; namespace backend.Entities { public class Restaurant { public int Id { get; set; } public int? OwnerFk { get; set; } public virtual User Owner { get; set; } public virtual ICollection Reservations { get; set; } public virtual ICollection Menu { get; set; } public virtual ICollection Reviews { get; set; } public string Name { get; set; } public string Address { get; set; } public string Phone { get; set; } public byte[] Image { get; set; } } }