changes
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Sources.Twitch.Models
|
||||
{
|
||||
public class TwitchChannel : TwitchPlaylist
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
public required string Id { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -9,5 +9,13 @@ namespace VDownload.Sources.Twitch.Models
|
||||
{
|
||||
public abstract class TwitchPlaylist : Playlist
|
||||
{
|
||||
#region CONSTRUCTORS
|
||||
|
||||
protected TwitchPlaylist()
|
||||
{
|
||||
Source = Source.Twitch;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user