MustacheSharp/MustacheSharp/IArgument.cs

10 lines
156 B
C#
Raw Permalink Normal View History

2018-07-15 22:57:30 +00:00
namespace Mustache
2014-05-21 21:02:31 +00:00
{
public interface IArgument
{
string GetKey();
object GetValue(Scope keyScope, Scope contextScope);
}
}