This commit is contained in:
lijianyou
2025-09-30 15:00:32 +08:00
parent 1b262f06b8
commit b4e759cf69
202 changed files with 22035 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
namespace dy.net.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 class VideoStaticsDto
{
public long VideoCount { get; set; }
public long AuthorCount { get; set; }
public long CategoryCount { get; set; }
public double ViedoSizeTotal { get; set; }
public long CollectCount { get; set; }
public long FavoriteCount { get; set; }
public List<VideoStaticsItemDto> Authors { get; set; } = new List<VideoStaticsItemDto>();
public List<VideoStaticsItemDto> Categories { get; set; } = new List<VideoStaticsItemDto>();
}
}