drinkrate/DrinkRateAPI/DbEntities/DbProduct.cs
2025-08-09 19:05:02 +02:00

20 lines
No EOL
499 B
C#

namespace DrinkRateAPI.DbEntities;
public class DbProduct : DbEntityWithHistory
{
public Guid Id { get; set; }
public Guid ProductTableId { get; set; }
public DbProductTable ProductTable { get; set; }
public Guid CompanyId { get; set; }
public DbCompany Company { get; set; }
public ICollection<DbProductRating> ProductRatings { get; set; }
public string ProductName { get; set; }
public long RatingSum { get; set; }
public long RatingCount { get; set; }
}