Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Models/TwitchPlaylist.cs

22 lines
395 B
C#
Raw Normal View History

2024-02-13 02:59:40 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VDownload.Models;
2024-02-13 02:59:40 +01:00
namespace VDownload.Sources.Twitch.Models
2024-02-13 02:59:40 +01:00
{
public abstract class TwitchPlaylist : Playlist
{
2024-02-28 01:22:13 +01:00
#region CONSTRUCTORS
protected TwitchPlaylist()
{
Source = Source.Twitch;
}
#endregion
2024-02-13 02:59:40 +01:00
}
}