Files
caliverse_server/ServerCommon/EchoSystem/Models/CaliumEventResponse.cs
2025-05-01 07:20:41 +09:00

21 lines
416 B
C#

using Newtonsoft.Json;
namespace ServerCommon;
public class CaliumEventResponse : EchoSystemBaseResponse
{
[JsonProperty("data")]
public EchoEventData? m_data { get; set; } = new();
}
public class EchoEventData
{
// 등록 Id
[JsonProperty("_id")]
public string? m_id { get; set; }
// 등록 시간
[JsonProperty("create_time")]
public DateTime? m_create_time { get; set; }
}