结构调整

This commit is contained in:
jianzhichu
2026-01-19 09:57:40 +08:00
parent d9cb721f64
commit f5449f3ace
77 changed files with 4060 additions and 1516 deletions
+19
View File
@@ -0,0 +1,19 @@
using Newtonsoft.Json;
namespace dy.net.model.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; }
}
}