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

export class DiagnosisCategoryListGetSuccessResp {
    @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;
}

export class diagreportGetSuccess{
  @ApiProperty({
    description: 'Status of the response',
    example: 'success',
  })
  status: string;

  @ApiProperty({
    description: 'Message detailing the result of the operation',
    example: 'diagnosis category added successfully',
  })
  message: string;
}