using System; using System.Collections.Generic; namespace Users_Roles.Models; public partial class User { public int IdUser { get; set; } public string? Fio { get; set; } public string? Login { get; set; } public byte[]? Pasword { get; set; } public byte[]? Image { get; set; } public int? RoleUser { get; set; } public virtual Role? RoleUserNavigation { get; set; } }