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

9 lines
208 B
C#
Raw Permalink Normal View History

namespace HermesSocketLibrary.Requests.Messages
{
public class Group
{
public string Id { get; set; }
public string Name { get; set; }
public int Priority { get; set; }
}
}