namespace DrinkRateAPI.DbEntities; public class DbUserProfile : DbEntityWithHistory { public Guid Id { get; set; } public ICollection CompanyTableViews { get; set; } public ICollection ProductTableViews { get; set; } public ICollection CompanyRatings { get; set; } public ICollection ProductRatings { get; set; } public ICollection UserProfileCompanyTableStats { get; set; } public ICollection 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; } public ICollection UpdateRecords { get; set; } }