Sic.Framework-Nanjing-Baishi/MECF.Framework.UI.Client/DataGridTransform/ExtendedGrid/Classes/GroupData.cs

13 lines
370 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace ExtendedGrid.Classes
{
public class GroupByData
{
public string ColumnName { get; set; }
public string SortDirection { get; set; }
public int Index { get; set; }
public string SortMemberPath { get; set; }
public double GridWidth { get; set; }
public double GridSecondColumnWidth { get; set; }
}
}