Files
Twitchy/TwitchDesktopNotifications/JsonStructure/Helix/UsersFollowsData.cs
Martin Barker ac4b022587 Inital Commit
2023-01-27 23:36:55 +00:00

37 lines
925 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace TwitchDesktopNotifications.JsonStructure.Helix
{
internal class UsersFollowsData
{
public UsersFollowsData() { }
[JsonPropertyName("from_id")]
public string FromID { get; set; }
[JsonPropertyName("from_login")]
public string FromUserName { get; set; }
[JsonPropertyName("from_name")]
public string FromDisplayName { get; set; }
[JsonPropertyName("to_id")]
public string ToID { get; set; }
[JsonPropertyName("to_login")]
public string ToUserName { get; set; }
[JsonPropertyName("to_name")]
public string ToDisplayName { get; set; }
[JsonPropertyName("followed_at")]
public string FollowedISODateTime { get; set; }
}
}