using System; using System.Collections.Generic; namespace reactivepril.Models; public partial class User { public int UserId { get; set; } public string Name { get; set; } = null!; public string Surname { get; set; } = null!; public string Login { get; set; } = null!; public string Password { get; set; } = null!; public int? Genders { get; set; } public int? Roles { get; set; } public virtual Gender? GendersNavigation { get; set; } public virtual ICollection Images { get; set; } = new List(); public virtual Role? RolesNavigation { get; set; } }