powerfun-unity/Assets/Scripts/Apis/Models/MapRouteRankingList.cs

15 lines
308 B
C#
Raw Normal View History

2021-04-15 10:13:01 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Apis.Models
{
public class MapRouteRankingList
{
public List<MapRouteRanking> list { get; set; }
public int TotalPages { get; set; }
}
}