using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CP.Kjh.Models
{
public class RouteModel
{
///
/// 老版类型名称
///
public string OldName { get; set; }
///
/// 新版类型名称
///
public string NewName { get; set; }
///
/// 新版页面类型名称
///
public string ViewNewName { get; set; }
///
/// 页面显示名称
///
public string Name { get; set; }
///
/// 彩种枚举 CP.Kjh.Models.CzTypeEnum
///
public int CzTypeEnum { get; set; }
///
/// 彩种图片Class名称
///
public string ImgClassName { get; set; }
///
/// 彩种详情图片名称
///
public string ImgXQ { get; set; }
///
/// 页面是否显示(目前用于首页的的连接展示)
///
public bool IsShow { get; set; } = true;
///
/// 热门
///
public bool IsHost { get; set; } = false;
///
/// 推荐
///
public bool IsRecommend { get; set; } = false;
}
}