Files
tcg-client/Assets/TcgEngine/Scripts/Data/RankData/LadderPositionResponse.cs
2025-09-01 17:25:59 +08:00

13 lines
272 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TcgEngine
{
[System.Serializable]
public class LadderPositionResponse
{
// 玩家在排行榜中的位置未上榜为null
public int? position;
}
}