"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SortProperty = void 0;
class SortProperty {
constructor(name, sortDescending) {
this.name = name;
this.sortDescending = sortDescending;
}
}
exports.SortProperty = SortProperty;