mirror of
https://github.com/bitwarden/mobile
synced 2025-12-11 05:43:30 +00:00
15 lines
428 B
C#
15 lines
428 B
C#
using System.Threading.Tasks;
|
|
using Bit.App.Models.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ICipherCollectionRepository
|
|
{
|
|
Task<IEnumerable<CipherCollectionData>> GetAllByUserIdAsync(string userId);
|
|
Task InsertAsync(CipherCollectionData obj);
|
|
Task DeleteAsync(CipherCollectionData obj);
|
|
Task DeleteByUserIdAsync(string userId);
|
|
}
|
|
}
|