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

25 lines
755 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Apis.Models
{
public class MapCompetitionModel
{
public int Id { get; set; }
public string Title { get; set; }
public int Status { get; set; }
public DateTime StartTime { get; set; }
public DateTime CreateTime { get; set; }
public int UserCount { get; set; }
public string StatusStr { get; set; }
public string CoverImage { get; set; }
public int MapCompetitionType { get; set; }
public double TotalDistance { get; set; }
public double LastDistance { get; set; }
public bool CanEnter { get; set; }
}
}