1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 15:23:35 +00:00
Files
mobile/src/App/Abstractions/Services/ICollectionService.cs
2017-11-24 23:15:25 -05:00

15 lines
376 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.App.Models;
using System;
namespace Bit.App.Abstractions
{
public interface ICollectionService
{
Task<Collection> GetByIdAsync(string id);
Task<IEnumerable<Collection>> GetAllAsync();
Task<IEnumerable<Tuple<string, string>>> GetAllCipherAssociationsAsync();
}
}