MustacheSharp/mustache-sharp/IArgument.cs

15 lines
243 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mustache
{
public interface IArgument
{
string GetKey();
object GetValue(Scope keyScope, Scope contextScope);
}
}