using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace M55128_rec.Models.ViewModels.ConsultationMangerModel
{
public class News_Preview
{
///
/// 彩种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; }
}
public class Menu
{
public Menu(string NewsType, string ItemName)
{
this.NewsType = NewsType;
this.ItemName = ItemName;
}
///
/// 彩种ID
///
public string NewsType { get; set; }
///
/// 彩种名称
///
public string ItemName { get; set; }
}
}