powerfun-unity/Assets/Scripts/Apis/Models/JoinedCompetitionModel.cs

43 lines
1.5 KiB
C#

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; }
public bool? IsOfficial { get; set; }
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; }
}
}