using System; using System.Collections.Generic; namespace DigitalOps.Dal.DbEntity; public partial class Client { public long Id { get; set; } public string Name { get; set; } = null!; public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public virtual ICollection OrganizationClients { get; set; } = new List(); public virtual ICollection Projects { get; set; } = new List(); }