54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
namespace dy.net.model.dto
|
|
{
|
|
public class VideoStaticsItemDto
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public long Count { get; set; }
|
|
|
|
public string Color { get; set; }
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public string UperId { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class VideoStaticsDto
|
|
{
|
|
|
|
public long VideoCount { get; set; }
|
|
|
|
public long AuthorCount { get; set; }
|
|
|
|
public long CategoryCount { get; set; }
|
|
|
|
public string VideoSizeTotal { get; set; }
|
|
|
|
public string VideoCollectSize { get; set; }
|
|
public string VideoFollowSize { get; set; }
|
|
public string VideoFavoriteSize { get; set; }
|
|
|
|
public string VideoMixSize { get; set; }
|
|
public string VideoSeriesSize { get; set; }
|
|
|
|
public long CollectCount { get; set; }
|
|
public long FavoriteCount { get; set; }
|
|
|
|
public long FollowCount { get; set; }
|
|
public long MixCount { get; set; }
|
|
|
|
public long SeriesCount { get; set; }
|
|
|
|
public long GraphicVideoCount { get; set; }
|
|
public string GraphicVideoSize { get; set; }
|
|
|
|
|
|
public string TotalDiskSize { get; set; }
|
|
public List<VideoStaticsItemDto> Authors { get; set; } = new List<VideoStaticsItemDto>();
|
|
public List<VideoStaticsItemDto> Categories { get; set; } = new List<VideoStaticsItemDto>();
|
|
}
|
|
}
|