Files
VDownload/VDownload.Sources/VDownload.Sources.Common/SearchRegexPlaylist.cs

14 lines
281 B
C#
Raw Normal View History

2024-03-03 13:59:13 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VDownload.Models;
namespace VDownload.Sources.Common
{
public class SearchRegexPlaylist : SearchRegex<Func<string, int, Task<Playlist>>>
{
}
}