17 lines
No EOL
593 B
C#
17 lines
No EOL
593 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<DbUserCompanyTableStats> UserCompanyTableStats { get; set; }
|
|
public ICollection<DbUserProductTableStats> UserProductTableStats { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
} |