초기커밋

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,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; }
}