You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
264 B

  1. import { OptionItem } from '~/domain/models/option/option'
  2. export class OptionDTO {
  3. page: number;
  4. q?: string;
  5. isChecked?: string;
  6. constructor(item: OptionItem) {
  7. this.page = item.page;
  8. this.q = item.q;
  9. this.isChecked = item.isChecked;
  10. }
  11. }