10 lines
170 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>
{
}
}