mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 14:13:25 +00:00
14 lines
384 B
C#
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);
|
|
}
|
|
}
|