Source: test-dto.js

/**
 *
 */
class TestDTO {
  /**
   * @param {any} json
   */
  constructor (json) {
    this.yaml = json.yaml
  }
}

export default TestDTO