mirror of
https://github.com/bitwarden/mobile
synced 2025-12-21 18:53:29 +00:00
[SG-744] Add claimed domain logic to mobile (#2333)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
namespace Bit.Core.Models.Request
|
||||
{
|
||||
public class OrganizationDomainSsoDetailsRequest
|
||||
{
|
||||
public string Email { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
namespace Bit.Core.Models.Response
|
||||
{
|
||||
public class OrganizationDomainSsoDetailsResponse
|
||||
{
|
||||
public bool SsoAvailable { get; set; }
|
||||
public string DomainName { get; set; }
|
||||
public string OrganizationIdentifier { get; set; }
|
||||
public bool SsoRequired { get; set; }
|
||||
public DateTime? VerifiedDate { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user