namespace dy.net.model.dto
{
public class DouyinVideoPageRequestDto : PageRequestDto
{
///
/// 标题查询。
///
public string? Title { get; set; }
public string? Author { get; set; }
///
/// 博主 UID 精确筛选。用于从关注列表直达该博主的已同步视频。
///
public string? AuthorId { get; set; }
//public string? Name { get; set; }
public string? ViedoType { get; set; }
public List? Dates { get; set; }
public List? Dates2 { get; set; }
public string? Tag { get; set; }
public string? SortField { get; set; }
public string? SortOrder { get; set; }
public string? CookieId { get; set; }
}
public class PageRequestDto
{
public int PageIndex { get; set; }
public int PageSize { get; set; } = 10;
}
public class FollowRequestDto : PageRequestDto
{
public string FollowUserName { get; set; }
public string MySelfId { get; set; }
public bool OpenSync { get; set; }
public bool FullSync { get; set; }
public bool UnOpen { get; set; }
}
public class FollowUpdateDto
{
public string Id { get; set; }
public bool OpenSync { get; set; }
public bool FullSync { get; set; }
public string SavePath { get; set; }
public string UperId { get; set; }
}
public class DouyinCollectCateRequestDto : PageRequestDto
{
public string cookieId { get; set; }
public VideoTypeEnum cateType { get; set; }
}
}