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.

13 lines
257 B

2 years ago
2 years ago
  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. }