This commit is contained in:
jianzhichu
2026-01-26 22:42:05 +08:00
parent 85986cdaa3
commit edbcc13086
19 changed files with 438 additions and 330 deletions
-24
View File
@@ -1,24 +0,0 @@
using Newtonsoft.Json;
namespace dy.net.model.dto
{
public class FollowErrorDto
{
/// <summary>
///
/// </summary>
[JsonProperty("followings")]
public object Followings { get; set; }
/// <summary>
/// 8 - 用户未登录
/// </summary>
[JsonProperty("status_code")]
public int StatusCode { get; set; }
/// <summary>
/// 用户未登录
/// </summary>
[JsonProperty("status_msg")]
public string StatusMsg { get; set; }
}
}
+2
View File
@@ -50,4 +50,6 @@
Description = description ?? throw new ArgumentNullException(nameof(description), "任务描述不能为空");
}
}
}
+8
View File
@@ -38,6 +38,14 @@
/// </summary>
//[Description("收藏短剧")]
dy_series = 7,
/// <summary>
/// 同步关注列表--
/// </summary>
dy_followuser=1000,
/// <summary>
/// 同步关注列表一次
/// </summary>
dy_followuser_once = 2000,
}
+13
View File
@@ -43,6 +43,19 @@ namespace dy.net.model.entity
/// </summary>
public bool DownSeries { get; set; }
/// <summary>
/// 是否下载收藏夹视频
/// </summary>
public bool DownCollect { get; set; }
/// <summary>
/// 是否下载点赞(喜欢的)视频
/// </summary>
public bool DownFavorite { get; set; }
/// <summary>
/// 是否下载关注的博主的作品
/// </summary>
public bool DownFollowd { get; set; }
/// <summary>
/// 1 开启同步 0 关闭同步
/// </summary>
public int Status { get; set; }