namespace DrinkRateAPI.DbEntities; public class DbProductTable { public Guid Id { get; set; } public ICollection Products { get; set; } public string ProductTableName { get; set; } public Guid CompanyTableId { get; set; } public DbCompanyTable CompanyTable { get; set; } }