drinkrate/DrinkRateAPI/DbEntities/DbUser.cs
2025-08-09 12:54:29 +02:00

21 lines
No EOL
671 B
C#

namespace DrinkRateAPI.DbEntities;
public class DbUser
{
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<DbUserCompanyTableStat> UserCompanyTableStats { get; set; }
public ICollection<DbUserProductTableStat> UserProductTableStats { get; set; }
public string UserName { get; set; }
public bool IsAdmin { get; set; }
public bool IsDeleted { get; set; }
}