11 lines
208 B
C#
Raw Normal View History

2024-07-12 23:12:04 -05:00
using API.DTO.Base;
using DAL.Models;
namespace API.Authentication.Interfaces
{
public interface IEventAuthentication : IGenericAuthentication<EventDTO, Event>
{
2024-08-31 18:38:43 -05:00
bool canCheckSelfSignup(User user);
2024-07-12 23:12:04 -05:00
}
}