Files
Umbraco-CMS/components/umbraco.controls/MenuIconI.cs

29 lines
516 B
C#
Raw Normal View History

namespace umbraco.uicontrols {
public interface MenuIconI {
string ImageURL {
get;
set;
}
string ID {
get;
set;
}
string OnClickCommand {
get;
set;
}
string AltText {
get;
set;
}
int IconWidth {
get;
set;
}
int IconHeight {
get;
set;
}
}
}