11 lines
370 B
C#
11 lines
370 B
C#
![]() |
using Microsoft.AspNetCore.Authorization;
|
|||
|
using Microsoft.AspNetCore.Http;
|
|||
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
|||
|
namespace Mirea.Api.Endpoint.Controllers;
|
|||
|
|
|||
|
[Route("api/v{version:apiVersion}/Configuration/[controller]")]
|
|||
|
[Authorize]
|
|||
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
|||
|
[Tags("Configuration")]
|
|||
|
public class ConfigurationBaseController : BaseController;
|