@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
18 lines (17 loc) • 647 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GroupManagementQuery = void 0;
class GroupManagementQuery {
constructor(searchText, groupTypeId, providerId, pageNumber, pageSize, sortColumn, sortDesc, scope, scopeType) {
this.searchText = searchText;
this.groupTypeId = groupTypeId;
this.providerId = providerId;
this.pageNumber = pageNumber;
this.pageSize = pageSize;
this.sortColumn = sortColumn;
this.sortDesc = sortDesc;
this.scope = scope;
this.scopeType = scopeType;
}
}
exports.GroupManagementQuery = GroupManagementQuery;