초기커밋
This commit is contained in:
21
ServerCommon/EchoSystem/Models/CaliumEventResponse.cs
Normal file
21
ServerCommon/EchoSystem/Models/CaliumEventResponse.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user