10 lines
180 B
C#
Raw Normal View History

2024-08-31 18:38:07 -05:00
using API.DTO.Base.Update;
using DAL.Models;
namespace API.Authentication.Interfaces
{
public interface ISignupAuthentication : IGenericAuthentication<SignupDTO, Signup>
{
}
}