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