14 lines
No EOL
306 B
C#
14 lines
No EOL
306 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbProductRating
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public DbUser User { get; set; }
|
|
|
|
public Guid ProductId { get; set; }
|
|
public DbProduct Product { get; set; }
|
|
|
|
public byte Rating { get; set; }
|
|
|
|
public string? Comment { get; set; }
|
|
} |