diff --git a/YouTubeChannelDownloader/Models/YouTubeVideo.cs b/YouTubeChannelDownloader/Models/YouTubeVideo.cs new file mode 100644 index 0000000..9a20da0 --- /dev/null +++ b/YouTubeChannelDownloader/Models/YouTubeVideo.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using YoutubeExplode.Playlists; + +namespace YouTubeChannelDownloader.Models +{ + public class YouTubeVideo + { + public PlaylistVideo PlaylistVideo { get; set; } + public int VideoNumber { get; set; } + } +}