RazorCore contains all the core razor engine implementation RazorDynamicNode contains all the DynamicNode functionality and associated support files
8 lines
217 B
C#
8 lines
217 B
C#
using System.Collections.Generic;
|
|
|
|
namespace umbraco.MacroEngines {
|
|
public interface IParameterDictionary : IEnumerable<KeyValuePair<string, string>> {
|
|
string this[string alias] { get; }
|
|
}
|
|
}
|