16 lines
422 B
C#
16 lines
422 B
C#
|
|
using Microsoft.Extensions.Configuration;
|
||
|
|
namespace VDownload.Sources.Twitch.Configuration.Models{
|
||
|
|
|
||
|
|
public class Helix
|
||
|
|
{
|
||
|
|
[ConfigurationKeyName("token_schema")]
|
||
|
|
public string TokenSchema { get; set; }
|
||
|
|
|
||
|
|
[ConfigurationKeyName("client_id")]
|
||
|
|
public string ClientId { get; set; }
|
||
|
|
|
||
|
|
[ConfigurationKeyName("endpoints")]
|
||
|
|
public EndpointsHelix Endpoints { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|