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