dotnet-digital-ops/DigitalOps.Dal/DbEntity/Client.cs

20 lines
511 B
C#
Raw Permalink Normal View History

2025-01-02 15:10:52 -05:00
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<OrganizationClient> OrganizationClients { get; set; } = new List<OrganizationClient>();
public virtual ICollection<Project> Projects { get; set; } = new List<Project>();
}