10 lines
185 B
C#
10 lines
185 B
C#
|
using API.DTO.Base;
|
||
|
using DAL.Models;
|
||
|
|
||
|
namespace API.Authentication.Interfaces
|
||
|
{
|
||
|
public interface ISavedEventAuthentication : IGenericAuthentication<SavedEventDTO, SavedEvent>
|
||
|
{
|
||
|
}
|
||
|
}
|