using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assets.Scripts.Apis.Models { public class MapRouteRanking { /// /// /// public int Id { get; set; } /// /// /// public string WxHeadImg { get; set; } /// /// /// public string TotalTime { get; set; } /// /// /// public int UserId { get; set; } /// /// /// public int RouteId { get; set; } /// /// 晴天 /// public string NickName { get; set; } /// /// /// public double? AveragePower { get; set; } /// /// /// public double? AverageHeartRate { get; set; } /// /// /// public string ContinueMark { get; set; } /// /// /// public double WeightKg { get; set; } /// /// /// public int? AntModelId { get; set; } /// /// /// public string DeviceName { get; set; } /// /// 骑行台 /// public string DeviceType { get; set; } /// /// /// public int RowNumber { get; set; } /// /// /// public bool MySelf { get; set; } /// /// /// public double TripDistance { get; set; } /// /// /// public bool IsDNF { get; set; } /// /// /// public double Progress { get; set; } /// /// 国家编号 /// public string CountryCode { get; set; } } }