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; }
|
|||
|
|
}
|
|||
|
|
}
|