diff --git a/WorkFlow.API/Controllers/ProfileControlsTFController.cs b/WorkFlow.API/Controllers/ProfileControlsTFController.cs new file mode 100644 index 0000000..9deeb2e --- /dev/null +++ b/WorkFlow.API/Controllers/ProfileControlsTFController.cs @@ -0,0 +1,16 @@ +using DigitalData.Core.API; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using WorkFlow.Application.Contracts; +using WorkFlow.Application.DTO.ProfileControlsTF; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + [Authorize] + public class ProfileControlsTFController(ILogger logger, IProfileControlsTFService service) : CRUDControllerBase(logger, service) + { + } +} \ No newline at end of file