mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +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);
|
|||
|
|
}
|
|||
|
|
}
|