Files
VDownload/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Authentication/AuthenticationData.cs
Mateusz Skoczek e3ec5c3a48 twitch vod downloading done
ffmpeg essentials

fix

Project reorganized

git lfs

ffmpeg removed

ffmpeg added
2024-02-22 02:25:13 +01:00

26 lines
482 B
C#

using Newtonsoft.Json;
using VDownload.Services.Data.Authentication.Models;
namespace VDownload.Services.Data.Authentication
{
public class AuthenticationData
{
#region PROPERTIES
[JsonProperty("twitch")]
public TokenAuthenticationData Twitch { get; set; }
#endregion
#region CONSTRUCTORS
public AuthenticationData()
{
Twitch = new TokenAuthenticationData();
}
#endregion
}
}