MustacheSharp/mustache-sharp/IArgument.cs

15 lines
243 B
C#
Raw Normal View History

2014-05-21 21:02:31 +00:00
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);
}
}