using System.Collections.Generic; namespace Bit.App.Models.Api.Response { public class DomainsReponse { public IEnumerable> EquivalentDomains { get; set; } public IEnumerable GlobalEquivalentDomains { get; set; } public class GlobalDomains { public byte Type { get; set; } public IEnumerable Domains { get; set; } public bool Excluded { get; set; } } } }