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

export class UpdateDiagnosisSubCategoryListDto{
    @ApiProperty({ example: 1, description: 'The unique identifier for the diagnosis subcategory' })
    id: number;
  
    @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;
}
