SortSpecification
data class SortSpecification<T>(val sortAttribute: SortAttribute<T>, val sortDirection: SortDirection)
Defines a sorting specification for collections of elements of type T.
Parameters
T
The type of elements to be sorted.
sortAttribute
The attribute to be used for sorting.
sortDirection
The direction of sorting.