mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
27 lines
892 B
C#
27 lines
892 B
C#
using Bit.Core.Models.Api;
|
|
using Bit.Core.Models.Data.Organizations;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Response.Organizations;
|
|
|
|
public class OrganizationDomainSsoDetailsResponseModel : ResponseModel
|
|
{
|
|
public OrganizationDomainSsoDetailsResponseModel(OrganizationDomainSsoDetailsData data, string obj = "organizationDomainSsoDetails")
|
|
: base(obj)
|
|
{
|
|
if (data == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(data));
|
|
}
|
|
|
|
SsoAvailable = data.SsoAvailable;
|
|
DomainName = data.DomainName;
|
|
OrganizationIdentifier = data.OrganizationIdentifier;
|
|
VerifiedDate = data.VerifiedDate;
|
|
}
|
|
|
|
public bool SsoAvailable { get; private set; }
|
|
public string DomainName { get; private set; }
|
|
public string OrganizationIdentifier { get; private set; }
|
|
public DateTime? VerifiedDate { get; private set; }
|
|
}
|