mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-18 06:36:11 -05:00
9 lines
131 B
C#
9 lines
131 B
C#
namespace NHSE.Core
|
|
{
|
|
public interface INamedValue
|
|
{
|
|
string Name { get; }
|
|
ushort Index { get; }
|
|
}
|
|
}
|