mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 18:28:27 -04:00
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
#nullable disable
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Modules.Searches.Common.StreamNotifications.Providers;
|
|
|
|
public class HelixUsersResponse
|
|
{
|
|
public class User
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonPropertyName("login")]
|
|
public string Login { get; set; }
|
|
|
|
[JsonPropertyName("display_name")]
|
|
public string DisplayName { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonPropertyName("broadcaster_type")]
|
|
public string BroadcasterType { get; set; }
|
|
|
|
[JsonPropertyName("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonPropertyName("profile_image_url")]
|
|
public string ProfileImageUrl { get; set; }
|
|
|
|
[JsonPropertyName("offline_image_url")]
|
|
public string OfflineImageUrl { get; set; }
|
|
|
|
[JsonPropertyName("view_count")]
|
|
public int ViewCount { get; set; }
|
|
|
|
[JsonPropertyName("email")]
|
|
public string Email { get; set; }
|
|
|
|
[JsonPropertyName("created_at")]
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
|
|
[JsonPropertyName("data")]
|
|
public List<User> Data { get; set; }
|
|
} |