bcgov/common-forms-toolkit

View on GitHub
app/src/forms/form/models/searchParameters.js

Summary

Maintainability
A
0 mins
Test Coverage
class FormSearch {
  constructor() {
    this.name = undefined;
    this.slug = undefined;
    this.keyword = undefined;
    this.public = undefined;
    this.active = undefined;
  }
}

module.exports.FormSearch = FormSearch;