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

export class DiagnosisSubCategoryList {}

export class subdiagreportGetSuccess{
    @ApiProperty({
      description: 'Status of the response',
      example: 'success',
    })
    status: string;
  
    @ApiProperty({
      description: 'Message detailing the result of the operation',
      example: 'diagnosis sub category added successfully',
    })
    message: string;
  }