Files
VDownload/VDownload.Sources/VDownload.Sources.Common/SearchRegex.cs

17 lines
376 B
C#
Raw 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.Text.RegularExpressions;
using System.Threading.Tasks;
using VDownload.Models;
namespace VDownload.Sources.Common
{
public struct SearchRegex
{
public Regex Regex { get; set; }
public Func<string, Task<object>> SearchFunction { get; set; }
}
}