MireaBackend/Endpoint/Controllers/BaseController.cs

8 lines
221 B
C#
Raw Permalink Normal View History

2024-01-28 04:34:33 +03:00
using Microsoft.AspNetCore.Mvc;
namespace Mirea.Api.Endpoint.Controllers;
2024-05-28 07:09:40 +03:00
[Produces("application/json")]
[Route("api/v{version:apiVersion}/[controller]")]
2024-01-28 04:34:33 +03:00
[ApiController]
public class BaseController : ControllerBase;