Updated Controller structuring.

This commit is contained in:
2021-07-24 02:32:30 -05:00
parent 2c90678141
commit 4476b1b3e1
3 changed files with 16 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc;
namespace Props.Controllers
{
[ApiController]
[Route("api/[Controller]")]
public class ApiControllerBase : ControllerBase
{
}
}