30 lines
716 B
C#
30 lines
716 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 StreamsData
|
|
{
|
|
public StreamsData() { }
|
|
|
|
[JsonPropertyName("user_id")]
|
|
public string UserId { get; set; }
|
|
|
|
[JsonPropertyName("user_name")]
|
|
public string DisplayName { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonPropertyName("thumbnail_url")]
|
|
public string ThumbnailImg { get; set; }
|
|
}
|
|
}
|