28 lines
558 B
C#
28 lines
558 B
C#
namespace Umbraco.Web.Macros
|
|
{
|
|
public class MacroPropertyModel
|
|
{
|
|
public string Key { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public MacroPropertyModel()
|
|
{ }
|
|
|
|
public MacroPropertyModel(string key, string value)
|
|
{
|
|
Key = key;
|
|
Value = value;
|
|
}
|
|
|
|
public MacroPropertyModel(string key, string value, string type)
|
|
{
|
|
Key = key;
|
|
Value = value;
|
|
Type = type;
|
|
}
|
|
}
|
|
}
|