mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 11:43:49 +00:00
setup settings api repository
This commit is contained in:
17
src/App/Models/Api/Response/DomainsReponse.cs
Normal file
17
src/App/Models/Api/Response/DomainsReponse.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.App.Models.Api.Response
|
||||
{
|
||||
public class DomainsReponse
|
||||
{
|
||||
public IEnumerable<IEnumerable<string>> EquivalentDomains { get; set; }
|
||||
public IEnumerable<GlobalDomains> GlobalEquivalentDomains { get; set; }
|
||||
|
||||
public class GlobalDomains
|
||||
{
|
||||
public byte Type { get; set; }
|
||||
public IEnumerable<string> Domains { get; set; }
|
||||
public bool Excluded { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user