constellation-api/CH.Dal/DbEntity/User.cs

26 lines
564 B
C#
Raw Permalink Normal View History

2025-01-02 17:53:38 -05:00
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; }
2025-01-02 17:53:38 -05:00
public virtual ICollection<Machine> Machines { get; set; } = new List<Machine>();
}