MustacheSharp/MustacheSharp/Substitution.cs

12 lines
205 B
C#
Raw Normal View History

2018-07-15 22:57:30 +00:00
namespace Mustache
2016-03-21 17:41:46 +00:00
{
internal class Substitution
{
public string Key { get; set; }
public string Substitute { get; set; }
public bool IsExtension { get; set; }
}
}