Files
douyin/dto/DouyinVideoPageRequestDto.cs
T
jianzhichu e6e9ff3cc3 1、去重
2、分享
3、视频播放
4、批量删除,重新下载
5、自定义标题(仅博主视频)
6、授权页面去掉博主添加,新增关注列表
7、图文视频合成优化
8、其他优化
2025-11-30 00:42:25 +08:00

52 lines
1021 B
C#

using System.ComponentModel.DataAnnotations;
namespace dy.net.dto
{
public class DouyinVideoPageRequestDto : PageRequestDto
{
/// <summary>
/// 标题查询。
/// </summary>
public string? Title { get; set; }
public string? Author { get; set; }
//public string? Name { get; set; }
public string? ViedoType { get; set; }
public List<string>? Dates { get; set; }
public List<string>? Dates2 { 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 class FollowUpdateDto
{
public string Id { get; set; }
public bool OpenSync { get; set; }
public bool FullSync { get; set; }
public string SavePath { get; set; }
}
}