1
0
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:
Kyle Spearrin
2017-02-08 21:19:09 -05:00
parent 2d605f5dfb
commit 2c1ebc0439
6 changed files with 97 additions and 0 deletions

View 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; }
}
}
}