1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-28 14:13:25 +00:00
Files
mobile/src/App/Abstractions/Repositories/ISiteRepository.cs
2016-06-14 23:23:05 -04:00

14 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.App.Models.Data;
namespace Bit.App.Abstractions
{
public interface ISiteRepository : IRepository<SiteData, string>
{
Task<IEnumerable<SiteData>> GetAllByUserIdAsync(string userId);
Task<IEnumerable<SiteData>> GetAllByUserIdAsync(string userId, bool favorite);
}
}