mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
13 lines
392 B
C#
13 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models.Data;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ICipherRepository : IRepository<CipherData, string>
|
|
{
|
|
Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId);
|
|
Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId, bool favorite);
|
|
}
|
|
}
|