10 lines
170 B
C#
Raw Normal View History

2024-07-13 12:51:45 -05:00
using API.DTO.Base;
using DAL.Models;
namespace API.Authentication.Interfaces
{
public interface IImageAuthentication : IGenericAuthentication<ImageDTO, Image>
{
}
}