feat: add fnOS packaging, storage workflows and release pipeline
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user