using System.Collections.Generic; namespace Bit.Core.Models.Response { public class SyncResponse { public ProfileResponse Profile { get; set; } public List Folders { get; set; } = new List(); public List Collections { get; set; } = new List(); public List Ciphers { get; set; } = new List(); public DomainsResponse Domains { get; set; } public List Policies { get; set; } = new List(); public List Sends { get; set; } = new List(); } }