48 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scenes.Ride.Scripts.Model
{
public class SelectParamModel
{
/// <summary>
/// 在线用户ID跟骑选的用户
/// </summary>
public int OnlineUserId { get; set; }
/// <summary>
/// 继续骑行的标志
/// </summary>
public string ContinueMark { get; set; }
/// <summary>
/// 当前第几次骑行
/// </summary>
public int? ContinueIndex { get; set; }
/// <summary>
/// 路线Id
/// </summary>
public int RouteId { get; set; }
/// <summary>
/// 赛事Id
/// </summary>
public int CompetitionId { get; set; }
/// <summary>
/// 最后一次骑行的距离
/// </summary>
public double EndDistance { get; set; }
/// <summary>
/// 排名信息Id用于骑行回顾多人
/// </summary>
public List<string> RankingsId { get; set; }
///// <summary>
///// 是否为全球骑行的继续骑行
///// </summary>
//public bool GlobalContinue { get; set; }
public int GlobalCyclingId { get; set; }
}
}