2024-02-14 02:07:22 +01:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Sources.Twitch.Configuration.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EndpointsHelix
|
|
|
|
|
|
{
|
|
|
|
|
|
[ConfigurationKeyName("get_videos")]
|
|
|
|
|
|
public string GetVideos { get; set; }
|
2024-02-28 01:22:13 +01:00
|
|
|
|
|
2024-03-03 03:14:07 +01:00
|
|
|
|
[ConfigurationKeyName("get_clips")]
|
|
|
|
|
|
public string GetClips { get; set; }
|
|
|
|
|
|
|
2024-02-28 01:22:13 +01:00
|
|
|
|
[ConfigurationKeyName("get_users")]
|
|
|
|
|
|
public string GetUsers { get; set; }
|
2024-02-14 02:07:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|