drinkrate/DrinkRateAPI/DbEntities/DbProduct.cs
2025-08-09 01:00:49 +02:00

12 lines
No EOL
245 B
C#

namespace DrinkRateAPI.DbEntities;
public class DbProduct
{
public Guid Id { get; set; }
public Guid CompanyId { get; set; }
public Guid TableId { get; set; }
public ICollection<DbProductRating> ProductRatings { get; set; }
}