8 lines
209 B
C#
8 lines
209 B
C#
namespace TwitchChatTTS.Seven.Socket.Data
|
|
{
|
|
public class SubscribeMessage
|
|
{
|
|
public required string Type { get; set; }
|
|
public IDictionary<string, string>? Condition { get; set; }
|
|
}
|
|
} |