drinkrate/DrinkRateAPI/DbEntities/DbUserProfileProductTableStat.cs

16 lines
No EOL
405 B
C#

namespace DrinkRateAPI.DbEntities;
public class DbUserProfileProductTableStat
{
public Guid UserProfileId { get; set; }
public DbUserProfile UserProfile { get; set; }
public Guid ProductTableId { get; set; }
public DbProductTable ProductTable { get; set; }
public int RatingCount { get; set; }
public int HighestRatingCount { get; set; }
public int Credits { get; set; }
}