/**
 * Represents the order by clause for a query. Contains the name of the field to order by and the type of ordering (ascending(asc) or descending(desc)).
 */
export interface OrderBy {
    Name: string;
    Type: string;
}
