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

27 lines
945 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace dy.net.dto
{
public class VideoTitleDataTemplate
{
/// <summary> 对应 {id} </summary>
public string Id { get; set; }
/// <summary> 对应 {VideoTitle} </summary>
public string VideoTitle { get; set; } = string.Empty;
/// <summary> 对应 {SyncTime}(同步时间) </summary>
//public DateTime? SyncTime { get; set; }
/// <summary> 对应 {ReleaseTime}(发布时间) </summary>
public DateTime? ReleaseTime { get; set; }
/// <summary> 对应 {FileHash}(文件哈希值) </summary>
public string FileHash { get; set; } = string.Empty;
/// <summary> 对应 {Resolution}(分辨率,如 1920x1080 </summary>
public string Resolution { get; set; } = string.Empty;
/// <summary> 对应 {FileSize}(文件大小,单位:字节) </summary>
//public long FileSize { get; set; } = 0;
}
}