14 lines
209 B
C#
14 lines
209 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace WatchIt.WebAPI.Controllers;
|
||
|
|
|
||
|
|
[ApiController]
|
||
|
|
[Route("persons")]
|
||
|
|
public class PersonsController : ControllerBase
|
||
|
|
{
|
||
|
|
#region SERVICES
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|