hermes-socket-library/Requests/Messages/EmoteInfo.cs
2024-06-24 22:31:45 +00:00

13 lines
268 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HermesSocketLibrary.Requests.Messages
{
public class EmoteInfo
{
public string Id { get; set; }
public string Name { get; set; }
}
}