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.
 
 
 
 
 

38 lines
952 B

namespace Swift.web.Component.Grid.gridHelper
{
public class GridColumn : GridFilter
{
public GridColumn(string key, string description, string width, string type)
{
Key = key;
Description = description;
Width = width;
Type = type;
}
public GridColumn(string key, string description, string width, string type, string columnDataType)
{
Key = key;
Description = description;
Width = width;
Type = type;
ColumnDataType = columnDataType;
}
private string _width;
public string Width
{
set { _width = value; }
get { return _width; }
}
private string _columnDataType;
public string ColumnDataType
{
set { _columnDataType = value; }
get { return _columnDataType; }
}
}
}