2022-06-29 19:46:41 -04:00
|
|
|
|
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; }
|
2022-07-28 09:31:03 +01:00
|
|
|
|
public int UserCount { get; set; }
|
|
|
|
|
|
public int? Seats { get; set; }
|
|
|
|
|
|
public string Plan { get; set; }
|
2021-06-30 09:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|