14 lines
220 B
C#
14 lines
220 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Mustache
|
|||
|
{
|
|||
|
internal class Substitution
|
|||
|
{
|
|||
|
public string Key { get; set; }
|
|||
|
|
|||
|
public string Substitute { get; set; }
|
|||
|
|
|||
|
public bool IsExtension { get; set; }
|
|||
|
}
|
|||
|
}
|