namespace dy.net.model.dto
{
public class VideoChartItemDto
{
///
/// 日期,格式MM-DD(如01-21)
///
public string Date { get; set; } = string.Empty;
///
/// 我喜欢的数量
///
public int Favorite { get; set; }
///
/// 我收藏的数量
///
public int Collect { get; set; }
///
/// 我关注的数量
///
public int Follow { get; set; }
///
/// 图文视频数量
///
public int Graphic { get; set; }
///
/// 合集数量
///
public int Mix { get; set; }
///
/// 短剧数量
///
public int Series { get; set; }
}
}