mirror of
https://github.com/bitwarden/server.git
synced 2025-04-26 07:12:20 -05:00
14 lines
336 B
C#
14 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IU2fRepository : IRepository<U2f, int>
|
|
{
|
|
Task<ICollection<U2f>> GetManyByUserIdAsync(Guid userId);
|
|
Task DeleteManyByUserIdAsync(Guid userId);
|
|
}
|
|
}
|