feat: add fnOS packaging, storage workflows and release pipeline

This commit is contained in:
2026-08-11 18:05:49 +08:00
parent c5922f9b08
commit 95932f0199
181 changed files with 24024 additions and 1164 deletions
+43
View File
@@ -0,0 +1,43 @@
namespace dy.net.model.dto
{
public sealed class DouyinFollowLookupRequest
{
public string CookieId { get; set; }
public string DouyinNo { get; set; }
}
public sealed class DouyinFollowLookupResult
{
public string Query { get; set; }
public List<DouyinFollowCandidate> Candidates { get; set; } = new();
}
public sealed class DouyinFollowCandidate
{
public string SecUid { get; set; }
public string UperId { get; set; }
public string DouyinNo { get; set; }
public string UniqueId { get; set; }
public string ShortId { get; set; }
public string UperName { get; set; }
public string UperAvatar { get; set; }
public string Signature { get; set; }
public string Enterprise { get; set; }
public long FollowerCount { get; set; }
public bool ExactMatch { get; set; }
public bool AlreadyExists { get; set; }
}
}