1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
bitwarden-mobile/src/Core/Abstractions/ICollectionService.cs
Kyle Spearrin d050e01d08 interfaces
2019-04-17 09:09:54 -04:00

25 lines
998 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Models.Data;
using Bit.Core.Models.Domain;
using Bit.Core.Models.View;
namespace Bit.Core.Abstractions
{
public interface ICollectionService
{
Task ClearAsync(string userId);
void ClearCache();
Task<List<CollectionView>> DecryptManyAsync(List<Collection> collections);
Task DeleteAsync(string id);
Task<Collection> EncryptAsync(CollectionView model);
Task<List<Collection>> GetAllAsync();
Task<List<CollectionView>> GetAllDecryptedAsync();
Task<List<TreeNode<CollectionView>>> GetAllNestedAsync(List<CollectionView> collections = null);
Task<Collection> GetAsync(string id);
Task<TreeNode<CollectionView>> GetNestedAsync(string id);
Task ReplaceAsync(Dictionary<string, CollectionData> collections);
Task UpsertAsync(CollectionData collection);
Task UpsertAsync(List<CollectionData> collection);
}
}