NHSE/NHSE.Core/Structures/Records/INamedValue.cs
2026-01-13 16:02:58 -06:00

7 lines
108 B
C#

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