hrms-api-backend/BMA.EHR.Report.Service/Controllers/RetireReportController.cs
2023-08-17 10:46:30 +07:00

18 lines
523 B
C#

using BMA.EHR.Domain.Common;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Swashbuckle.AspNetCore.Annotations;
namespace BMA.EHR.Report.Service.Controllers
{
[Route("api/v{version:apiVersion}/report/retire")]
[ApiVersion("2.0")]
[ApiController]
[Produces("application/json")]
[Authorize]
[SwaggerTag("API รายงานระบบเกษียณ")]
public class RetireReportController : BaseController
{
}
}