10 lines
180 B
C#
10 lines
180 B
C#
using API.DTO.Base.Update;
|
|
using DAL.Models;
|
|
|
|
namespace API.Authentication.Interfaces
|
|
{
|
|
public interface ISignupAuthentication : IGenericAuthentication<SignupDTO, Signup>
|
|
{
|
|
}
|
|
}
|