Files
server/src/Core/Models/Data/Provider/ProviderOrganizationOrganizationDetails.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
602 B
C#
Raw Normal View History

namespace Bit.Core.Models.Data
2021-06-30 09:35:26 +02:00
{
public class ProviderOrganizationOrganizationDetails
{
public Guid Id { get; set; }
public Guid ProviderId { get; set; }
public Guid OrganizationId { get; set; }
public string OrganizationName { get; set; }
public string Key { get; set; }
public string Settings { get; set; }
public DateTime CreationDate { get; set; }
public DateTime RevisionDate { get; set; }
public int UserCount { get; set; }
public int? Seats { get; set; }
public string Plan { get; set; }
2021-06-30 09:35:26 +02:00
}
}