hermes-socket-library/Requests/Messages/EmoteInfo.cs

13 lines
268 B
C#
Raw Normal View History

2024-06-24 18:31:45 -04:00
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; }
}
}