Files
Umbraco-CMS/src/umbraco.controls/MenuIconI.cs
2012-06-22 20:39:48 +04:00

29 lines
516 B
C#

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