加入用户最近100场战绩记录并实现展示
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[Serializable]
|
||||
public class AllyHeroDeployEntry
|
||||
{
|
||||
public int heroId;
|
||||
public int deployCount;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class AllyHeroDeployLedgerPayload
|
||||
{
|
||||
public int version;
|
||||
public long lastUpdatedUtcTicks;
|
||||
public List<AllyHeroDeployEntry> entries = new List<AllyHeroDeployEntry>();
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class AllyHeroDeployLedgerEnvelope
|
||||
{
|
||||
public string payload;
|
||||
public string signature;
|
||||
}
|
||||
Reference in New Issue
Block a user