12 lines
267 B
C#
12 lines
267 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ServiceHost.BaseControllers;
|
|
|
|
//[Authorize(Policy = "ClientArea")]
|
|
[Area("Client")]
|
|
[ApiExplorerSettings(GroupName = "Client")]
|
|
[Route("api/[area]/[controller]")]
|
|
public class ClientBaseController: ControllerBase
|
|
{
|
|
|
|
} |