21 lines
No EOL
671 B
C#
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; }
|
|
} |