mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03: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);
|
|||
|
}
|
|||
|
}
|