초기커밋
This commit is contained in:
13
BrokerApiCore/DbEntity/PlanetInfo.cs
Normal file
13
BrokerApiCore/DbEntity/PlanetInfo.cs
Normal 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; } // 수정 시간
|
||||
}
|
||||
Reference in New Issue
Block a user