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

22 lines
611 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 Organization
{
public long Id { get; set; }
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 ICollection<Client> Clients { get; set; } = new List<Client>();
2025-01-02 15:10:52 -05:00
2025-01-22 12:54:43 -05:00
public virtual ICollection<OidcProvider> OidcProviders { get; set; } = new List<OidcProvider>();
2025-01-02 15:10:52 -05:00
public virtual ICollection<OrganizationUser> OrganizationUsers { get; set; } = new List<OrganizationUser>();
}