초기커밋
This commit is contained in:
26
ServerCommon/EchoSystem/Models/ConverterSyncResponse.cs
Normal file
26
ServerCommon/EchoSystem/Models/ConverterSyncResponse.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
||||
namespace ServerCommon;
|
||||
|
||||
|
||||
public class ConverterSyncResponse : EchoSystemBaseResponse
|
||||
{
|
||||
[JsonProperty("data")]
|
||||
public ConverterSyncData? m_sync { get; set; } = new();
|
||||
}
|
||||
|
||||
public class ConverterSyncData
|
||||
{
|
||||
// 현재까지 제공된 Epoch 값
|
||||
[JsonProperty("seq")]
|
||||
public int m_epoch { get; set; }
|
||||
|
||||
// 현재까지 제공된 회차 날짜 ( yyyyMMdd )
|
||||
[JsonProperty("ymd")]
|
||||
public int m_date { get; set; }
|
||||
|
||||
// 현재까지 제공된 칼리움 컨버터 총 누적 수량
|
||||
[JsonProperty("acc_volume")]
|
||||
public double m_stack_calium { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user