Establishes a link between DbUserProfile and DbApplicationUser, allowing for better management of user-related information and integration with ASP.NET Identity. Renames DbUser to DbUserProfile and updates related entities and configurations.
16 lines
No EOL
398 B
C#
16 lines
No EOL
398 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbUserProfileProductTableStat
|
|
{
|
|
public Guid UserId { 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; }
|
|
} |