using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Estsh.Core.Model { [Serializable] public class GridItem { private string _display = string.Empty; public string display { get { return _display; } set { _display = value; } } private string _name = string.Empty; public string name { get { return _name; } set { _name = value; } } private string _align = "left"; public string align { get { return _align; } set { _align = value; } } private string _width = "80"; public string width { get { return _width; } set { _width = value; } } private string _dateFmt = "yyyy-MM-dd HH:mm"; public string dateFmt { get { return _dateFmt; } set { _dateFmt = value; } } private bool _isSort = false; public bool isSort { get { return _isSort; } set { _isSort = value; } } private bool _export = true; public bool export { get { return _export; } set { _export = value; } } } }