targo-backend/src/modules/shift-codes/dtos/update-shift-codes.dto.ts
2025-07-24 09:55:29 -04:00

5 lines
186 B
TypeScript

import { PartialType } from '@nestjs/swagger';
import { CreateShiftCodeDto } from './create-shift-codes.dto';
export class UpdateShiftCodeDto extends PartialType(CreateShiftCodeDto) {}