32 lines
695 B
C#
32 lines
695 B
C#
using System.ComponentModel;
|
|
|
|
using Swashbuckle.AspNetCore.Annotations;
|
|
|
|
namespace BrokerApiCore;
|
|
|
|
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; }
|
|
}
|