mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 00:03:22 +00:00
18 lines
491 B
C#
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; }
|
|
}
|
|
}
|
|
}
|