drinkrate/DrinkRateAPI/DbEntities/DbUserProfile.cs
2025-08-11 22:08:13 +02:00

24 lines
No EOL
844 B
C#

namespace DrinkRateAPI.DbEntities;
public class DbUserProfile : DbEntityWithHistory
{
public Guid Id { get; set; }
public ICollection<DbCompanyTableView> CompanyTableViews { get; set; }
public ICollection<DbProductTableView> ProductTableViews { get; set; }
public ICollection<DbCompanyRating> CompanyRatings { get; set; }
public ICollection<DbProductRating> ProductRatings { get; set; }
public ICollection<DbUserProfileCompanyTableStat> UserProfileCompanyTableStats { get; set; }
public ICollection<DbUserProfileProductTableStat> UserProfileProductTableStats { get; set; }
public string UserName { get; set; }
public bool IsAdmin { get; set; }
public bool IsDeleted { get; set; }
public Guid ApplicationUserId { get; set; }
public virtual DbApplicationUser ApplicationUser { get; set; }
}