using System.Collections.Generic; namespace Bit.App.Models.Api { public class SyncResponse { public ProfileResponse Profile { get; set; } public IEnumerable Folders { get; set; } public IEnumerable Ciphers { get; set; } public DomainsResponse Domains { get; set; } } }