import { ApiProperty } from '@nestjs/swagger';

export class CreateDiagnosisSubCategoryListDto {

  @ApiProperty({ example: 10, description: 'The ID of the related category' })
  category_id: number;

  @ApiProperty({ example: 'Blood Test - Subcategory', description: 'The name of the diagnosis subcategory' })
  sub_category: string;
}
