namespace DrinkRateAPI.DbEntities; public class DbCompany { public Guid Id { get; set; } public Guid TableId { get; set; } public ICollection Products { get; set; } public ICollection CompanyRatings { get; set; } public string CompanyName { get; set; } }