초기커밋

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,13 @@
namespace BrokerCore.DbEntity;
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; } // 수정 시간
}