MustacheSharp/mustache-sharp/Substitution.cs

14 lines
220 B
C#
Raw Normal View History

2016-03-21 17:41:46 +00:00
using System;
namespace Mustache
{
internal class Substitution
{
public string Key { get; set; }
public string Substitute { get; set; }
public bool IsExtension { get; set; }
}
}