MustacheSharp/MustacheSharp/IArgument.cs

10 lines
156 B
C#

namespace Mustache
{
public interface IArgument
{
string GetKey();
object GetValue(Scope keyScope, Scope contextScope);
}
}