Files
VDownload/VDownload.Sources/VDownload.Sources.Common/SearchRegexVideo.cs

15 lines
308 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using VDownload.Models;
namespace VDownload.Sources.Common
{
public class SearchRegexVideo : SearchRegex<Func<string, Task<Video>>>
{
}
}