Files
bansonic_beta_main/Assets/scripts/_runtimecache/AllyHeroDeployLedgerModels.cs
T
2026-06-30 21:21:30 +08:00

32 lines
688 B
C#

using System;
using System.Collections.Generic;
[Serializable]
public class AllyHeroDeployEntry
{
public int heroId;
public int currentExp;
public int unlockedTierIndex;
public bool levelLock;
public bool autoBreakthroughEnabled;
public int deployCount;
public int finishCount;
public int mvpCount;
public long joinDateUtcTicks;
}
[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;
}