drinkrate/DrinkRateAPI/DbEntities/DbUser.cs
2025-08-09 01:00:49 +02:00

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; }
}