namespace DrinkRateAPI.DbEntities; public class DbProductTable { public Guid Id { get; set; } public string TableName { get; set; } public ICollection Products { get; set; } public ICollection ProductRatings { get; set; } }