f6d0d043b5
Created 4.1.0 branch [TFS Changeset #55082]
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;
|
|
}
|
|
}
|
|
}
|