Files
Sharp7Reactive/Sharp7.Rx/Interfaces/IVariableNameParser.cs
2024-02-09 12:33:24 +01:00

8 lines
137 B
C#

#nullable enable
namespace Sharp7.Rx.Interfaces;
internal interface IVariableNameParser
{
VariableAddress Parse(string input);
}