using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assets.Scripts.Apis.Models { public class MapCompetitionDetailModel { public int Id { get; set; } public string Name { get; set; } public string Title { get; set; } public double LastDistance { get; set; } public DateTime CreateTime { get; set; } public double TotalDistance { get; set; } public int Status { get; set; } public string Desc { get; set; } public string Dec { get; set; } public DateTime StartTime { get; set; } public bool CanStart { get; set; } public string CoverImageUrl { get; set; } public string CompetitionPreviewUrl { get; set; } } }