NHSE/NHSE.Core/Structures/Records/INamedValue.cs
Kurt 8de7f7b506 Add internal flag/value name translation
if you really want to translate these, go ahead
#157
2020-05-03 13:37:04 -07:00

9 lines
131 B
C#

namespace NHSE.Core
{
public interface INamedValue
{
string Name { get; }
ushort Index { get; }
}
}