mirror of
https://github.com/jcreek/YouTubeChannelDownloader.git
synced 2026-07-13 03:03:46 +00:00
feat(*): Add YouTubeVideo model
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user