13 lines
272 B
C#
13 lines
272 B
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
namespace TcgEngine
|
||
{
|
||
[System.Serializable]
|
||
public class LadderPositionResponse
|
||
{
|
||
// 玩家在排行榜中的位置,未上榜为null
|
||
public int? position;
|
||
}
|
||
} |