mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00: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);
|
|
}
|
|
}
|