Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Models/TwitchChannel.cs
2024-02-28 01:22:13 +01:00

18 lines
322 B
C#

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
}
}