feat(*): Add YouTubeVideo model

This commit is contained in:
Josh Creek
2021-08-29 15:41:15 +01:00
parent 4c5b3cb572
commit 26fb54d1d0
@@ -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; }
}
}