namespace DrinkRateAPI.DbEntities; public class DbCompanyTable { public Guid Id { get; set; } public ICollection Companies { get; set; } public string CompanyTableName { get; set; } public Guid ProductTableId { get; set; } public DbProductTable ProductTable { get; set; } }