Files

13 lines
339 B
C#
Raw Normal View History

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; }
}
}