42 lines
1.2 KiB
C#
Raw Normal View History

2021-04-14 15:02:33 +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 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<double> Point { get; set; }
public string Address { get; set; }
/// <summary>
/// 骑行热度
/// </summary>
public int TheHeat { get; set; }
2021-04-15 15:57:29 +08:00
public string Hard { get; set; }
public bool IsFire { get; set; }
public string CountryCode { get; set; }
public bool IsFavorite { get; set; }
public bool Enable3D { get; set; }
2021-04-19 14:36:08 +08:00
/// <summary>
/// 海拔线
/// </summary>
public string AltitudeGraph { get; set; }
2021-04-14 15:02:33 +08:00
}
}