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.

19 lines
449 B

4 years ago
using System;
namespace CK.SCP.Models.Attributes
{
/// <summary>
/// 是否在DataGrid中显示
/// </summary>
public class IsDataGridColum : Attribute
{
public IsDataGridColum(bool isShow, int displayOrder)
{
IsShowInDataGrid = isShow;
DisplayOrder = displayOrder;
}
public bool IsShowInDataGrid { get; set; }
public int DisplayOrder { get; set; }
}
}