Files
Umbraco-CMS/umbraco.MacroEngines.Juno/RazorCore/IParameterDictionary.cs
agrath@gmail.com 603a12c5a0 Split umbraco.MacroEngines.Juno into two subfolders (namespaces remain the same)
RazorCore contains all the core razor engine implementation
RazorDynamicNode contains all the DynamicNode functionality and associated support files
2011-02-24 16:05:54 -13:00

8 lines
217 B
C#

using System.Collections.Generic;
namespace umbraco.MacroEngines {
public interface IParameterDictionary : IEnumerable<KeyValuePair<string, string>> {
string this[string alias] { get; }
}
}