using System; using System.Collections.Generic; namespace kursovaya.Models; public partial class User { public int Id { get; set; } public string Login { get; set; } = null!; public string Password { get; set; } = null!; public string Email { get; set; } = null!; public int RoleId { get; set; } public virtual Role Role { get; set; } = null!; public virtual ICollection Students { get; set; } = new List(); public virtual ICollection Teachers { get; set; } = new List(); }