You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
952 B

namespace Swift.web.Component.Tab
{
public class TabField
{
private string _tabDesc = "";
private string _refPage = "";
private bool _isSelected;
public TabField()
{
}
public TabField(string tabDesc, string refPage, bool isSelected)
{
TabDesc = tabDesc;
RefPage = refPage;
IsSelected = isSelected;
}
public TabField(string tabDesc, string refPage)
{
TabDesc = tabDesc;
RefPage = refPage;
}
public string TabDesc
{
get { return _tabDesc; }
set { _tabDesc = value; }
}
public string RefPage
{
get { return _refPage; }
set { _refPage = value; }
}
public bool IsSelected
{
get { return _isSelected; }
set { _isSelected = value; }
}
}
}