cookie状态查询

This commit is contained in:
jianzhichu
2025-12-01 21:38:13 +08:00
parent b599880d7c
commit 2fedbafca8
11 changed files with 223 additions and 73 deletions
+24
View File
@@ -0,0 +1,24 @@
using Newtonsoft.Json;
namespace dy.net.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; }
}
}