1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00
bitwarden-mobile/src/Core/Models/Response/DomainsResponse.cs
Kyle Spearrin 5d2f4e6ca4 api models
2019-04-16 11:07:32 -04:00

11 lines
304 B
C#

using System.Collections.Generic;
namespace Bit.Core.Models.Response
{
public class DomainsResponse
{
public List<List<string>> EquivalentDomains { get; set; }
public List<GlobalDomainResponse> GlobalEquivalentDomains { get; set; } = new List<GlobalDomainResponse>();
}
}