26 lines
564 B
C#
26 lines
564 B
C#
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 bool Verified { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public virtual ICollection<Machine> Machines { get; set; } = new List<Machine>();
|
|
}
|