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
251 B

  1. import { Status } from '@/domain/models/celery/status'
  2. export class StatusDTO {
  3. ready: boolean
  4. result: object
  5. error: any
  6. constructor(item: Status) {
  7. this.ready = item.ready
  8. this.result = item.result
  9. this.error = item.error
  10. }
  11. }