ffmpeg essentials fix Project reorganized git lfs ffmpeg removed ffmpeg added
17 lines
270 B
C#
17 lines
270 B
C#
using VDownload.Models;
|
|
|
|
namespace VDownload.Sources.Twitch.Models
|
|
{
|
|
public abstract class TwitchVideo : Video
|
|
{
|
|
#region CONSTRUCTORS
|
|
|
|
protected TwitchVideo()
|
|
{
|
|
Source = Source.Twitch;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|