mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 15:23:35 +00:00
15 lines
376 B
C#
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();
|
|
}
|
|
}
|