Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Authentication/Models/ValidateResponseFail.cs

19 lines
464 B
C#
Raw Normal View History

2024-02-13 02:59:40 +01:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Sources.Twitch.Authentication.Models
{
internal class ValidateResponseFail
{
[JsonProperty("status", Required = Required.Always)]
public int Status { get; set; }
[JsonProperty("message", Required = Required.Always)]
public string Message { get; set; }
}
}