bitwarden-android/src/App/Abstractions/Repositories/ILoginRepository.cs

14 lines
388 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.App.Models.Data;
namespace Bit.App.Abstractions
{
2017-01-03 08:17:15 +03:00
public interface ILoginRepository : IRepository<LoginData, string>
{
2017-01-03 08:17:15 +03:00
Task<IEnumerable<LoginData>> GetAllByUserIdAsync(string userId);
Task<IEnumerable<LoginData>> GetAllByUserIdAsync(string userId, bool favorite);
}
}