12 lines
213 B
C#

using Microsoft.AspNetCore.Mvc;
namespace ServiceStationRestApi.Controllers
{
[Route("api/[controller]/[action]")]
[ApiController]
public class ReportController : Controller
{
}
}