using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assets.Scripts.Apis.Models { public class ActivityModel { /// /// /// public int Id { get; set; } /// /// /// public string BannerUrl { get; set; } /// /// /// public string DetailUrl { get; set; } /// /// 点亮中国 /// public string Content { get; set; } /// /// /// public string CreateTime { get; set; } /// /// /// public string EndTime { get; set; } /// /// /// public string IsDelete { get; set; } /// /// /// public string IsPublic { get; set; } /// /// 点亮中国 /// public string Title { get; set; } /// /// 点亮中国 /// public string Strategy { get; set; } /// /// /// public string JsonConfig { get; set; } /// /// /// public double TotalTicks { get; set; } public string Url { get; set; } public string GlobalDetailUrl { get; set; } /// /// 活动类型0:网页活动 1:App内部骑行活动 2:App内部赛事活动 /// public int ActivityType { get; set; } public int RouteId { get; set; } public int CompetitionId { get; set; } } }