Files
Deluxe-2023-Server-Code/Controllers/announcementsController.cs
T
Exception 1f113298e0 Movement
2026-05-09 14:31:53 -04:00

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>());
}
}
}