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

  1. import { Format } from '~/domain/models/download/format'
  2. export class FormatDTO {
  3. name: string
  4. example: string
  5. properties: object
  6. constructor(item: Format) {
  7. this.name = item.name
  8. this.example = item.example
  9. this.properties = item.properties
  10. }
  11. }