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

22 lines
507 B
C#
Raw 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; }
2025-01-22 12:54:43 -05:00
public long OrganizationId { get; set; }
2025-01-02 15:10:52 -05:00
public string Name { get; set; } = null!;
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
2025-01-22 12:54:43 -05:00
public virtual Organization Organization { get; set; } = null!;
2025-01-02 15:10:52 -05:00
public virtual ICollection<Project> Projects { get; set; } = new List<Project>();
}