Files
Backend-Api/ServiceHost/BaseControllers/ClientBaseController.cs
2025-07-13 14:17:52 +03:30

13 lines
307 B
C#

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