using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lottomat.Application.Entity.ViewModel.TrendChartModel
{
public class TrendChart_Preview
{
///
/// 分类Id
///
public string TrendChartType { get; set; }
///
/// 分类名称
///
public string ItemName { get; set; }
///
/// 文章集合表
///
public List TrendChartPreviewItems { get; set; }
}
public class TempTrendChartPreviewItem
{
public string TrendChartChildType { get; set; }
public string TrendChartChildName { get; set; }
public List TrendChartPreviewItem { get; set; }
}
public class TrendChartPreviewItem
{
///
/// 走势图
///
///
public string Title { get; set; }
///
/// 走势图连接的url
///
///
public string TrendChartUrl { get; set; }
}
}