2024-08-31 18:38:43 -05:00

11 lines
208 B
C#

using API.DTO.Base;
using DAL.Models;
namespace API.Authentication.Interfaces
{
public interface IEventAuthentication : IGenericAuthentication<EventDTO, Event>
{
bool canCheckSelfSignup(User user);
}
}