mirror of
https://github.com/TbT480jcspy/Deluxe-2023-Server-Code.git
synced 2026-09-08 22:51:28 -07:00
18 lines
410 B
C#
18 lines
410 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DeluxeNET.Controllers
|
|
{
|
|
[Route("[controller]")]
|
|
[ApiController]
|
|
public class announcementsController : ControllerBase
|
|
{
|
|
[HttpGet("v2/mine/unread")]
|
|
[HttpGet("v2/subscription/mine/unread")]
|
|
public IActionResult fjweiio()
|
|
{
|
|
return Ok(new List<object>());
|
|
}
|
|
}
|
|
}
|