export class {{className}} extends Model {
{{#each properties}}
  {{#if description}}
  /**
   * {{description}}
   */
  {{/if}}
  {{#if originalRef}}
  @Type(() => {{originalRef}})
  {{/if}}
  public {{propertyName}} : {{propertyType}}
{{/each}}
}
