Files
2025-05-01 07:23:28 +09:00

14 lines
600 B
C#

namespace BrokerApiCore;
public class PlanetInfo
{
public required string PlanetId { get; init; } // 플래닛 이름
public required string PlanetName { get; init; }
public required string CompanyName { get; init; } // 플래닛 GUID
public required string SecretKey { get; init; } // 플래닛 비밀키 - 칼리버스에서 발급함
public required string ServerType { get; init; } // 에코 시스템에 넘길 serverType
public string Description { get; init; } = "";
public DateTime CreatedAt { get; init; } // 생성 시간
public DateTime UpdatedAt { get; set; } // 수정 시간
}