diff --git a/src/modules/payments/dto/create-payment.dto.ts b/src/modules/payments/dto/create-payment.dto.ts index a29c6be..4bb4671 100644 --- a/src/modules/payments/dto/create-payment.dto.ts +++ b/src/modules/payments/dto/create-payment.dto.ts @@ -1,9 +1,9 @@ -import {IsNumber, IsUUID} from "class-validator"; +import { IsNumber, IsUUID } from 'class-validator'; export class CreatePaymentDto { - @IsNumber() - amount: number; + @IsNumber() + amount: number; - @IsUUID() - correlationId: string; + @IsUUID() + correlationId: string; }