1、增加图片视频

2、优化代码结构
3、up主下载分类逻辑可配置
This commit is contained in:
jianzhichu
2025-11-23 00:46:41 +08:00
parent 7cacdaedd4
commit 8cef13c926
51 changed files with 1604 additions and 1667 deletions
+19
View File
@@ -0,0 +1,19 @@
using Newtonsoft.Json;
namespace dy.net.dto
{
public class DouyinUpSecUserIdDto
{
/// <summary>
/// up主名称
/// </summary>
public string uper { get; set; }
public string uid { get; set; }
/// <summary>
/// 是否同步up主全部视频 0-否 1-是
/// </summary>
public bool syncAll { get; set; }
}
}