增加同步指定博主的作品

This commit is contained in:
lijianyou
2025-10-19 01:11:55 +08:00
parent 14a709e691
commit 59ce4f59ed
25 changed files with 1865 additions and 277 deletions
+19
View File
@@ -0,0 +1,19 @@
using Newtonsoft.Json;
namespace dy.net.dto
{
public class DyUpSecUserIdDto
{
/// <summary>
/// up主名称
/// </summary>
public string uper { get; set; }
public string uid { get; set; }
/// <summary>
/// 是否同步up主全部视频 0-否 1-是
/// </summary>
public bool syncAll { get; set; }
}
}