tlang-runtime-compiler/TLang.Common/ILabelable.cs

9 lines
130 B
C#

namespace TLang.Common
{
public interface ILabelable
{
string Key {get;set;}
int Value {get;set;}
}
}