using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assets.Scripts.Apis.Models { public class NearRouteModel { public int Id { get; set; } public string Name { get; set; } public string DirPath { get; set; } public string CreateTime { get; set; } public int UserId { get; set; } public double Distance { get; set; } public double EleDifference { get; set; } public double TotalClimb { get; set; } public double AverageGrade { get; set; } public string CoverImage { get; set; } public string ElevationPath { get; set; } public List Point { get; set; } public string Address { get; set; } /// /// 骑行热度 /// public int TheHeat { get; set; } } }