10 lines
258 B
C#
10 lines
258 B
C#
|
|
using GestionIntegral.Api.Models;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Data
|
||
|
|
{
|
||
|
|
public interface IAuthRepository
|
||
|
|
{
|
||
|
|
Task<Usuario?> GetUserByUsernameAsync(string username);
|
||
|
|
// Añadiremos métodos para cambiar clave, etc., más adelante
|
||
|
|
}
|
||
|
|
}
|