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 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; } } }