Files
Iris-Rec-2023-Server-Code/Controllers/customAvatarItemsController.cs
T
Exception 46589f2ef3 MOVEMENT
2026-05-09 14:13:43 -04:00

31 lines
779 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using System.Text.Json.Serialization;
namespace ir23.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class customAvatarItemsController : ControllerBase
{
[HttpGet("v1/isCreationAllowedForAccount")]
public IActionResult idefk()
{
return Ok(new iscreationallowedforaccountresponse
{
success = true,
value = null
});
}
public class iscreationallowedforaccountresponse
{
[JsonPropertyName("success")] public bool success { get; set; }
[JsonPropertyName("value")] public string value { get; set; }
}
}
}