bitwarden-android/src/Core/Models/Response/SyncResponse.cs

16 lines
686 B
C#
Raw Normal View History

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; }
public List<PolicyResponse> Policies { get; set; } = new List<PolicyResponse>();
public List<SendResponse> Sends { get; set; } = new List<SendResponse>();
2019-04-16 18:07:32 +03:00
}
}