using System; using System.Collections.Generic; namespace DigitalOps.Dal.DbEntity; public partial class User { public long Id { get; set; } public string Email { get; set; } = null!; public string FirstName { get; set; } = null!; public string? LastName { get; set; } public DateTime? RegisteredAt { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public virtual ICollection OrganizationUsers { get; set; } = new List(); public virtual ICollection ProjectTimeEntryApprovedByNavigations { get; set; } = new List(); public virtual ICollection ProjectTimeEntryEntryUsers { get; set; } = new List(); public virtual ICollection ProjectTimeEntryUsers { get; set; } = new List(); public virtual ICollection UserOidcs { get; set; } = new List(); }