using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Apis.Models
{
public class Recommand
{
public int Id { get; set; }
public int RouteId { get; set; }
public int AreaId { get; set; }
public int CompetitionId { get; set; }
///
/// Type:0线路 1集合 2活动
///
public int Type { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// banner
///
public string CoverImage { get; set; }
///
/// 活动链接
///
public string Url { get; set; }
public int? ActivityId { get; set; }
public string GlobeTitle { get; set; }
}
}