This commit is contained in:
lijianyou
2025-09-30 15:00:32 +08:00
parent 1b262f06b8
commit b4e759cf69
202 changed files with 22035 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
namespace dy.net.dto
{
public class VideoNfo
{
/// 视频名称
/// </summary>
public string Title { get; set; }
/// <summary>
/// 封面图片路径或URL
/// </summary>
public string Thumbnail { get; set; }
/// <summary>
/// 海报图片路径或URL
/// </summary>
public string Poster { get; set; }
/// <summary>
/// 作者/创作者
/// </summary>
public string Author { get; set; }
}
}