mirror of
https://github.com/art-ist/mustache-sharp.git
synced 2024-06-16 21:05:32 +00:00
23 lines
409 B
C#
23 lines
409 B
C#
namespace Mustache
|
|
{
|
|
public class StringArgument : IArgument
|
|
{
|
|
private readonly string value;
|
|
|
|
public StringArgument(string value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
|
|
public string GetKey()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public object GetValue(Scope keyScope, Scope contextScope)
|
|
{
|
|
return value;
|
|
}
|
|
}
|
|
}
|