13 lines
268 B
C#
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; }
|
||
|
}
|
||
|
}
|