/**
 * Defines how a Column is sorted
 */
export interface ColumnSort {
    /**
     * Id of Column being sorted
     */
    ColumnId: string;
    /**
     * How Column is sorted - either 'Asc' or 'Desc'
     */
    SortOrder: 'Asc' | 'Desc';
}
