2019-04-16 18:07:32 +03:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Response
|
|
|
|
|
{
|
|
|
|
|
public class SyncResponse
|
|
|
|
|
{
|
|
|
|
|
public ProfileResponse Profile { get; set; }
|
|
|
|
|
public List<FolderResponse> Folders { get; set; } = new List<FolderResponse>();
|
2019-04-17 19:12:43 +03:00
|
|
|
|
public List<CollectionDetailsResponse> Collections { get; set; } = new List<CollectionDetailsResponse>();
|
2019-04-16 18:07:32 +03:00
|
|
|
|
public List<CipherResponse> Ciphers { get; set; } = new List<CipherResponse>();
|
|
|
|
|
public DomainsResponse Domains { get; set; }
|
2020-02-21 18:23:38 +03:00
|
|
|
|
public List<PolicyResponse> Policies { get; set; } = new List<PolicyResponse>();
|
2021-01-25 23:27:38 +03:00
|
|
|
|
public List<SendResponse> Sends { get; set; } = new List<SendResponse>();
|
2019-04-16 18:07:32 +03:00
|
|
|
|
}
|
|
|
|
|
}
|