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