13 lines
339 B
C#
13 lines
339 B
C#
|
|
using Microsoft.Extensions.Configuration;
|
||
|
|
namespace VDownload.Sources.Twitch.Configuration.Models{
|
||
|
|
|
||
|
|
public class Search
|
||
|
|
{
|
||
|
|
[ConfigurationKeyName("general_regexes")]
|
||
|
|
public List<string> GeneralRegexes { get; } = new List<string>();
|
||
|
|
|
||
|
|
[ConfigurationKeyName("vod")]
|
||
|
|
public Vod Vod { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|