Files
bansonic_beta_main/Assets/scripts/_runtimecache/AllyHeroDeployLedgerModels.cs
T

27 lines
525 B
C#

using System;
using System.Collections.Generic;
[Serializable]
public class AllyHeroDeployEntry
{
public int heroId;
public int deployCount;
public int finishCount;
public int mvpCount;
}
[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;
}