2021-06-24 18:19:28 +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 JoinedCompetitionModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
public string Dec { get; set; }
|
|
|
|
|
|
public int CreateUser { get; set; }
|
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
2021-09-09 16:29:22 +08:00
|
|
|
|
public bool? IsOfficial { get; set; }
|
2021-06-24 18:19:28 +08:00
|
|
|
|
public DateTime StartTime { get; set; }
|
|
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
|
|
public string CoverImage { get; set; }
|
|
|
|
|
|
public string Area { get; set; }
|
|
|
|
|
|
public int MapCompetitionType { get; set; }
|
|
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
public string StatusStr { get; set; }
|
|
|
|
|
|
public object Sponsor { get; set; }
|
|
|
|
|
|
public int RouteId { get; set; }
|
|
|
|
|
|
public DateTime StartApplyTime { get; set; }
|
|
|
|
|
|
public DateTime EndApplyTime { get; set; }
|
|
|
|
|
|
public int MaxMembers { get; set; }
|
|
|
|
|
|
public int CloseTime { get; set; }
|
|
|
|
|
|
public string InviteCode { get; set; }
|
|
|
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
|
public DateTime? FirstEndTime { get; set; }
|
|
|
|
|
|
public bool IsComplete { get; set; }
|
|
|
|
|
|
public double TotalClimb { get; set; }
|
|
|
|
|
|
public double Distance { get; set; }
|
|
|
|
|
|
public double AverageGrade { get; set; }
|
|
|
|
|
|
public double EleDifference { get; set; }
|
|
|
|
|
|
public double MaxElevation { get; set; }
|
|
|
|
|
|
public string Hard { get; set; }
|
|
|
|
|
|
public bool CanEnter { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|