props/Props/Controllers/ApiControllerBase.cs

11 lines
181 B
C#
Raw Normal View History

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