props/Props/Controllers/ApiControllerBase.cs

11 lines
181 B
C#
Raw Normal View History

2021-07-24 02:32:30 -05:00
using Microsoft.AspNetCore.Mvc;
namespace Props.Controllers
{
[ApiController]
[Route("api/[Controller]")]
public class ApiControllerBase : ControllerBase
{
}
}