mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-19 15:07:24 -05:00
7 lines
108 B
C#
7 lines
108 B
C#
namespace NHSE.Core;
|
|
|
|
public interface INamedValue
|
|
{
|
|
string Name { get; }
|
|
ushort Index { get; }
|
|
} |