props/Props/Controllers/ApiControllerBase.cs

11 lines
181 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Props.Controllers
{
[ApiController]
[Route("api/[Controller]")]
public class ApiControllerBase : ControllerBase
{
}
}