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


export class UpdateDiagnosisCategoryListDto  {
    @ApiProperty({
        description: 'Name of the diagnosis test category',
        example: 'Blood Test',
      })
      diagnosis_test_category: string;
      @ApiProperty({
        description: 'id of the diagnosis test category',
        example: 1,
      })
      id: number;
}
