21 lines
416 B
C#
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; }
|
|
} |