Files
Umbraco-CMS/components/umbraco.controls/MenuIconClass.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

39 lines
1022 B
C#

namespace umbraco.uicontrols {
public class MenuIconClass : MenuIconI {
private string _id;
private string _imageURL;
private string _onClickCommand;
private string _AltText;
private int _width;
private int _height;
public string ID {
get { return _id; }
set { _id = value; }
}
public string AltText {
get { return _AltText; }
set { _AltText = value; }
}
public int IconWidth {
get { return _width; }
set { _width = value; }
}
public int IconHeight {
get { return _height; }
set { _height = value; }
}
public string ImageURL {
get { return _imageURL; }
set { _imageURL = value; }
}
public string OnClickCommand {
get { return _onClickCommand; }
set { _onClickCommand = value; }
}
}
}