完成前端改造
1、下一步实现各个分类下载视频中重复视频去除-可配置是否去重
This commit is contained in:
@@ -35,6 +35,10 @@
|
||||
public long FollowCount { 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>();
|
||||
|
||||
@@ -1,11 +1,16 @@
|
||||
namespace dy.net.dto
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace dy.net.dto
|
||||
{
|
||||
public enum VideoTypeEnum
|
||||
{
|
||||
|
||||
[Description("喜欢的")]
|
||||
Favorite = 1,
|
||||
[Description("收藏的")]
|
||||
Collect = 2,
|
||||
[Description("关注的")]
|
||||
UperPost = 3,
|
||||
[Description("图片视频")]
|
||||
ImageVideo = 4
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user