using DigitalData.Core.API; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using WorkFlow.API.Attributes; using WorkFlow.Application.Contracts; using WorkFlow.Application.DTO.Profile; using WorkFlow.Domain.Entities; namespace WorkFlow.API.Controllers; [APIKeyAuth] [Route("api/[controller]")] [ApiController] [Authorize] public class ProfileController : CRUDControllerBaseWithErrorHandling { public ProfileController(ILogger logger, IProfileService service) : base(logger, service) { } }