2024-08-04 19:46:10 -04:00
|
|
|
namespace TwitchChatTTS.Twitch.Socket.Messages
|
|
|
|
{
|
|
|
|
public class NotificationMessage
|
|
|
|
{
|
|
|
|
public NotificationInfo Subscription { get; set; }
|
|
|
|
public object Event { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class NotificationInfo : EventSubscriptionMessage
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
2024-08-06 15:29:29 -04:00
|
|
|
public object? Event { get; set; }
|
2024-08-04 19:46:10 -04:00
|
|
|
}
|
|
|
|
}
|