1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +00:00
Files
mobile/src/App/Models/Api/Response/DomainsReponse.cs
2017-02-08 21:19:09 -05:00

18 lines
491 B
C#

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