mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
14 lines
314 B
C#
14 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Domains;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IUserRepository : IRepository<User>
|
|
{
|
|
Task<User> GetByEmailAsync(string email);
|
|
Task ReplaceAndDirtyCiphersAsync(User user);
|
|
}
|
|
}
|