using System.Collections.Generic;
namespace Models
{
///
/// 资讯视图模型
///
public class NewsPreview
{
///
/// 彩种ID
///
public string NewsType { get; set; }
///
/// 彩种名称
///
public string ItemName { get; set; }
///
/// 彩种下面的分类名称
///
public string ClassiFication { get; set; }
///
/// 文章集合表
///
public List NewsPreviewItem { get; set; }
}
public class NewsPreviewItem
{
///
/// 文章id
///
public string NewsId { get; set; }
///
/// 文章创建时间
///
public string AddTime { get; set; }
///
/// 文章标题
///
public string Title { get; set; }
///
/// 期号
///
public string PeriodsNumber { get; set; }
}
}