11 lines
200 B
C#
11 lines
200 B
C#
using API.DTO.Base;
|
|
using DAL.Models;
|
|
|
|
namespace API.Authentication.Interfaces
|
|
{
|
|
public interface IGrantAuthentication : IGenericAuthentication<GrantDTO, Grant>
|
|
{
|
|
bool canGetMine(User user);
|
|
}
|
|
}
|