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

9 lines
130 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
namespace TLang.Common
{
public interface ILabelable
{
string Key {get;set;}
int Value {get;set;}
}
}