diff --git a/WorkFlow.API/Controllers/ProfileController.cs b/WorkFlow.API/Controllers/ProfileController.cs new file mode 100644 index 0000000..a3109c2 --- /dev/null +++ b/WorkFlow.API/Controllers/ProfileController.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.Profile; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + [Authorize] + public class ProfileController(ILogger logger, IProfileService service) : CRUDControllerBase(logger, service) + { + } +} \ No newline at end of file