mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
18 lines
427 B
C#
18 lines
427 B
C#
using NexusForever.Shared.GameTable.Static;
|
|
|
|
namespace NexusForever.Shared.GameTable
|
|
{
|
|
public class TextTableEntry
|
|
{
|
|
public uint Id { get; }
|
|
public Language Language { get; }
|
|
public string Text { get; }
|
|
|
|
public TextTableEntry(Language language, uint id, string text)
|
|
{
|
|
Id = id;
|
|
Language = language;
|
|
Text = text;
|
|
}
|
|
}
|
|
}
|