18 lines
366 B
C#
18 lines
366 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 User
|
|
{
|
|
public User() { }
|
|
|
|
[JsonPropertyName("data")]
|
|
public List<UserData> Data { get; set; }
|
|
}
|
|
}
|