mirror of
https://github.com/bitwarden/android.git
synced 2025-01-25 01:03:50 +03:00
14 lines
501 B
C#
14 lines
501 B
C#
|
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>();
|
|||
|
public List<CollectionResponse> Collections { get; set; } = new List<CollectionResponse>();
|
|||
|
public List<CipherResponse> Ciphers { get; set; } = new List<CipherResponse>();
|
|||
|
public DomainsResponse Domains { get; set; }
|
|||
|
}
|
|||
|
}
|