29 lines
516 B
C#
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;
|
|
}
|
|
}
|
|
}
|