using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KJH55128_Rec.ViewModels
{
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; }
public string TrendChartUrlId { get; set; }
}
}