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

16 lines
356 B
C#
Raw Normal View History

2022-05-10 19:24:07 +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 MapRouteBestInfo
{
public string BestNickName { get; set; }
public string BestWxHeadImg { get; set; }
public string BestTotalTime { get; set; }
}
}