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.

16 lines
296 B

  1. import { Expose } from 'class-transformer'
  2. export class Catalog {
  3. name: string;
  4. example: string;
  5. properties: object;
  6. @Expose({ name: 'task_id' })
  7. taskId: string;
  8. @Expose({ name: 'display_name' })
  9. displayName: string;
  10. @Expose({ name: 'accept_types' })
  11. acceptTypes: string;
  12. }