using System.Text.Json.Serialization; namespace TwitchDesktopNotifications.JsonStructure { internal class SteamersToNotify { [JsonPropertyName("notifyAll")] public Boolean notifyAll = true; [JsonPropertyName("notify")] public List Streamers { get; set; } = new List(); } }