Files
Twitchy/TwitchDesktopNotifications/JsonStructure/SteamersToNotify.cs
2023-02-03 18:59:07 +00:00

14 lines
338 B
C#

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