Created emote struct

This commit is contained in:
Cameron
2024-03-20 08:24:26 -05:00
parent 7e089e1705
commit 9a69404c66

View File

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