using Estsh.Core.Base; using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Common.Models { /// /// /// [Serializable] public class GridColumn { public int ColumnId { get; set; } public int MenuId { get; set; } public string GridName { get; set; } public string Name { get; set; } public string Display { get; set; } public bool? Isallowhide { get; set; } public bool? Issort { get; set; } public string Type { get; set; } public string Width { get; set; } public int? Minwidth { get; set; } public string Align { get; set; } public bool? Hide { get; set; } public bool? Frozen { get; set; } public string Render { get; set; } public bool? Export { get; set; } public string Datefmt { get; set; } public int? Index { get; set; } } }