using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace ServiceHost.Api.BaseControllers; //[Authorize(Policy = "ClientArea")] [Area("Client")] [ApiExplorerSettings(GroupName = "Client")] [Route("api/[area]/[controller]")] public class ClientBaseController: ControllerBase { }