19 lines
538 B
C#
19 lines
538 B
C#
using System.ComponentModel;
|
|
using Swashbuckle.AspNetCore.Annotations;
|
|
|
|
namespace BrokerApiCore;
|
|
[SwaggerSchema("플래닛 인증 요청")]
|
|
public class PlanetAuthRequest
|
|
{
|
|
[Description("플래닛 id (칼리버스에서 발급)")]
|
|
public string? PlanetId { get; set; }
|
|
[Description("플래닛의 시크릿 키 (칼리버스에서 발급)")]
|
|
public string? PlanetSecretKey { get; set; }
|
|
}
|
|
|
|
public class PlanetAuthResponse
|
|
{
|
|
[Description("업체 인증용 jwt 엑세스 토큰")]
|
|
public required string AccessToken { get; set; }
|
|
}
|