Sic04/FrameworkLocal/UIClient/DataGridTransform/ExtendedGrid/Classes/GroupData.cs

13 lines
370 B
C#
Raw Normal View History

2022-09-19 09:16:33 +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; }
}
}