From 9a69404c667b7afc334997e76fc651244cce4caa Mon Sep 17 00:00:00 2001 From: Cameron Date: Wed, 20 Mar 2024 08:24:26 -0500 Subject: [PATCH] Created emote struct --- TwitchIrcClient/IRC/Messages/Emote.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 TwitchIrcClient/IRC/Messages/Emote.cs diff --git a/TwitchIrcClient/IRC/Messages/Emote.cs b/TwitchIrcClient/IRC/Messages/Emote.cs new file mode 100644 index 0000000..f4aeae8 --- /dev/null +++ b/TwitchIrcClient/IRC/Messages/Emote.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TwitchIrcClient.IRC.Messages +{ + public record struct Emote(string Name, int Length) + { + + } +}