mirror of
https://github.com/art-ist/mustache-sharp.git
synced 2024-06-16 21:05:32 +00:00
12 lines
205 B
C#
12 lines
205 B
C#
namespace Mustache
|
|
{
|
|
internal class Substitution
|
|
{
|
|
public string Key { get; set; }
|
|
|
|
public string Substitute { get; set; }
|
|
|
|
public bool IsExtension { get; set; }
|
|
}
|
|
}
|