cloutier--bird.makeup/src/BirdsiteLive/Controllers/InboxController.cs

20 lines
449 B
C#
Raw Normal View History

2020-03-21 03:29:36 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace BirdsiteLive.Controllers
{
[ApiController]
public class InboxController : ControllerBase
{
[Route("/inbox")]
[HttpPost]
public async Task<IActionResult> Inbox()
{
throw new NotImplementedException();
}
}
}