20 lines
No EOL
499 B
C#
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; }
|
|
} |