using System; using System.Collections.Generic; namespace CH.Dal.DbEntity; public partial class User { public long Id { get; set; } public string FirstName { get; set; } = null!; public string LastName { get; set; } = null!; public string Email { get; set; } = null!; public string SubjectId { get; set; } = null!; public virtual ICollection Machines { get; set; } = new List(); }