mirror of
https://github.com/TbT480jcspy/Deluxe-2023-Server-Code.git
synced 2026-09-08 14:41:26 -07:00
21 lines
476 B
C#
21 lines
476 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DeluxeNET.Controllers
|
|
{
|
|
[Route("[controller]")]
|
|
[ApiController]
|
|
public class econController : ControllerBase
|
|
{
|
|
[HttpGet("customAvatarItems/v1/owned")]
|
|
public IActionResult getMyOwnedCustomAvatarItems()
|
|
{
|
|
return Ok(new
|
|
{
|
|
Results = new List<object>(),
|
|
TotalResults = 0
|
|
});
|
|
}
|
|
}
|
|
}
|