mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
13 lines
261 B
C#
13 lines
261 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);
|
|||
|
|
}
|
|||
|
|
}
|