mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 00:33:20 +00:00
vault list grouping page
This commit is contained in:
14
src/App/Abstractions/Services/ICollectionService.cs
Normal file
14
src/App/Abstractions/Services/ICollectionService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user