mirror of
https://github.com/bitwarden/mobile
synced 2025-12-19 17:53:47 +00:00
change syncing to use new sync api
This commit is contained in:
12
src/App/Models/Api/Response/SyncResponse.cs
Normal file
12
src/App/Models/Api/Response/SyncResponse.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.App.Models.Api
|
||||
{
|
||||
public class SyncResponse
|
||||
{
|
||||
public ProfileResponse Profile { get; set; }
|
||||
public IEnumerable<FolderResponse> Folders { get; set; }
|
||||
public IEnumerable<CipherResponse> Ciphers { get; set; }
|
||||
public DomainsResponse Domains { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user