[성현모] CPMeta 최근데이터 조회 기능 추가

This commit is contained in:
SHM
2026-02-13 08:50:33 +09:00
parent 3626030124
commit 3f94a7b2b2
10 changed files with 107 additions and 3 deletions

View File

@ -34,6 +34,12 @@
public int ShardID { get; set; } = 1;
}
public class Request_GetWbmsLatest
{
public int Count { get; set; } = 20;
public int ShardID { get; set; } = 1;
}
public class Response_GetWbmsMeta
{
public List<tWbms> Wbms { get; set; } = new List<tWbms>();