10 lines
240 B
C#
10 lines
240 B
C#
|
|
using Microsoft.Extensions.Configuration;
|
|||
|
|
|
|||
|
|
namespace VDownload.Sources.Twitch.Configuration.Models
|
|||
|
|
{
|
|||
|
|
public class EndpointsHelix
|
|||
|
|
{
|
|||
|
|
[ConfigurationKeyName("get_videos")]
|
|||
|
|
public string GetVideos { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|