2024-02-13 02:59:40 +01:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
2024-02-14 02:07:22 +01:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-02-13 02:59:40 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2024-02-14 02:07:22 +01:00
|
|
|
|
using VDownload.Sources.Twitch.Configuration.Models;
|
2024-02-13 02:59:40 +01:00
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Sources.Twitch.Configuration
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TwitchConfiguration
|
|
|
|
|
|
{
|
2024-02-14 02:07:22 +01:00
|
|
|
|
[ConfigurationKeyName("api")]
|
|
|
|
|
|
public Api Api { get; set; }
|
2024-02-13 02:59:40 +01:00
|
|
|
|
|
2024-02-14 02:07:22 +01:00
|
|
|
|
[ConfigurationKeyName("search")]
|
|
|
|
|
|
public Search Search { get; set; }
|
2024-02-13 02:59:40 +01:00
|
|
|
|
|
2024-02-14 02:07:22 +01:00
|
|
|
|
[ConfigurationKeyName("download")]
|
|
|
|
|
|
public Download Download { get; set; }
|
2024-02-13 02:59:40 +01:00
|
|
|
|
|
2024-02-14 02:07:22 +01:00
|
|
|
|
[ConfigurationKeyName("authentication")]
|
|
|
|
|
|
public Authentication Authentication { get; set; }
|
2024-02-13 02:59:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|