Files
YouTube-Manager/Manager.YouTube/Models/Playlist/PlaylistVideo.cs
2025-11-02 21:43:06 +01:00

13 lines
401 B
C#

using Manager.YouTube.Models.Innertube;
namespace Manager.YouTube.Models.Playlist;
public class PlaylistVideo
{
public required string VideoId { get; set; }
public List<WebImage> Thumbnails { get; set; } = [];
public required string Title { get; set; }
public required string Author { get; set; }
public long LengthSeconds { get; set; }
public bool IsPlayable { get; set; }
}