收藏夹 服务

This commit is contained in:
jianzhichu
2026-01-19 14:11:23 +08:00
parent f5449f3ace
commit 65e6b48d8e
13 changed files with 401 additions and 15 deletions
+8 -1
View File
@@ -1,9 +1,16 @@
namespace dy.net.model.dto
{
public class DouyinCookieStopDto
public class DouyinCookieSwitchDto
{
public string Id { get; set; }
public int Status { get; set; }
}
public class DouyinCollectCateSwitchDto
{
public string Id { get; set; }
public bool Sync { get; set; }
}
}
+8
View File
@@ -52,4 +52,12 @@ namespace dy.net.model.dto
public string UperId { get; set; }
}
public class DouyinCollectCateRequestDto : PageRequestDto
{
public string cookieId { get; set; }
}
}