mirror of
https://github.com/bitwarden/server.git
synced 2025-04-17 11:08:16 -05:00
12 lines
233 B
C#
12 lines
233 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Domains;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IUserRepository : IRepository<User, Guid>
|
|
{
|
|
Task<User> GetByEmailAsync(string email);
|
|
}
|
|
}
|