9 lines
130 B
C#
9 lines
130 B
C#
|
namespace TLang.Common
|
||
|
{
|
||
|
public interface ILabelable
|
||
|
{
|
||
|
string Key {get;set;}
|
||
|
int Value {get;set;}
|
||
|
}
|
||
|
}
|