초기커밋
This commit is contained in:
20
BrokerApiCore/ApiModels/PlanetAuthApiModel.cs
Normal file
20
BrokerApiCore/ApiModels/PlanetAuthApiModel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace BrokerCore.ApiModels;
|
||||
|
||||
using System.ComponentModel;
|
||||
|
||||
using Swashbuckle.AspNetCore.Annotations;
|
||||
|
||||
[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; }
|
||||
}
|
||||
Reference in New Issue
Block a user