Files

18 lines
312 B
C#
Raw Permalink Normal View History

2024-03-03 03:14:07 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Sources.Twitch.Models
{
public class TwitchClip : TwitchVideo
{
#region PROPERTIES
public string Creator { get; set; }
#endregion
}
}