12 lines
213 B
C#
Raw Normal View History

2024-05-26 16:27:14 +04:00
using Microsoft.AspNetCore.Mvc;
namespace ServiceStationRestApi.Controllers
{
[Route("api/[controller]/[action]")]
[ApiController]
public class ReportController : Controller
{
}
}