초기커밋

This commit is contained in:
2025-05-01 07:20:41 +09:00
commit 98bb2e3c5c
2747 changed files with 646947 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
namespace BrokerCore.ApiModels;
using System.ComponentModel;
using Swashbuckle.AspNetCore.Annotations;
public class DummyRequest
{
public required string Dummy { get; set; }
}
public class DummyResponse
{
public required string Dummy { get; set; }
}
[SwaggerSchema("유저 로그인 요청")]
public class LoginRequest
{
[Description("해당 플래닛 웹에서 런처로부터 받은 토큰")]
public string? WebPortalToken { get; set; }
}
[SwaggerSchema("유저 로그인 응답")]
public class LoginResponse
{
[Description("유저 guid")]
public required string UserGuid { get; set; }
[Description("유저 nickname")]
public required string Nickname { get; set; }
}