35 lines
907 B
C#
Raw Normal View History

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; }
2022-01-07 11:03:49 +08:00
public int CompetitionId { get; set; }
/// <summary>
/// Type:0线路 1集合 2活动
/// </summary>
public int Type { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// banner
/// </summary>
public string CoverImage { get; set; }
/// <summary>
/// 活动链接
/// </summary>
public string Url { get; set; }
public int? ActivityId { get; set; }
public string GlobeTitle { get; set; }
}
}