2024-08-31 20:59:42 -05:00

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);
}
}