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) + { + + } +}