mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
16 lines
493 B
C#
16 lines
493 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class ChatChannelEntry
|
|
{
|
|
public uint Id;
|
|
public string EnumName;
|
|
public string UniversalCommand00;
|
|
public string UniversalCommand01;
|
|
public uint LocalizedTextIdName;
|
|
public uint LocalizedTextIdCommand;
|
|
public uint LocalizedTextIdAbbreviation;
|
|
public uint LocalizedTextIdAlternate00;
|
|
public uint LocalizedTextIdAlternate01;
|
|
public uint Flags;
|
|
}
|
|
}
|