2024-02-14 02:07:22 +01:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
namespace VDownload.Sources.Twitch.Configuration.Models{
|
|
|
|
|
|
2024-03-02 01:05:44 +01:00
|
|
|
public class SearchVod
|
2024-02-14 02:07:22 +01:00
|
|
|
{
|
|
|
|
|
[ConfigurationKeyName("regexes")]
|
|
|
|
|
public List<string> Regexes { get; } = new List<string>();
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("thumbnail")]
|
|
|
|
|
public Thumbnail Thumbnail { get; set; }
|
|
|
|
|
|
2024-03-02 01:05:44 +01:00
|
|
|
[ConfigurationKeyName("live_thumbnail_url_regex")]
|
|
|
|
|
public string LiveThumbnailUrlRegex { get; set; }
|
|
|
|
|
|
2024-02-14 02:07:22 +01:00
|
|
|
[ConfigurationKeyName("stream_playlist_regex")]
|
|
|
|
|
public string StreamPlaylistRegex { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|