11 lines
200 B
C#
Raw Normal View History

2024-07-12 23:29:28 -05:00
using API.DTO.Base;
using DAL.Models;
namespace API.Authentication.Interfaces
{
public interface IGrantAuthentication : IGenericAuthentication<GrantDTO, Grant>
{
2024-08-31 20:59:42 -05:00
bool canGetMine(User user);
2024-07-12 23:29:28 -05:00
}
}