mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 07:13:33 +00:00
add collection syncing
This commit is contained in:
11
src/App/Abstractions/Repositories/ICollectionRepository.cs
Normal file
11
src/App/Abstractions/Repositories/ICollectionRepository.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.App.Models.Data;
|
||||
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface ICollectionRepository : IRepository<CollectionData, string>
|
||||
{
|
||||
Task<IEnumerable<CollectionData>> GetAllByUserIdAsync(string userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user