refactor payments module

This commit is contained in:
2025-12-22 17:52:59 +01:00
parent 0828506c21
commit c90b2166c1
28 changed files with 524 additions and 268 deletions

View File

@@ -3,5 +3,5 @@ import { PaymentDTO } from './PaymentDTO';
export class CreatePaymentOutputDTO {
@ApiProperty({ type: PaymentDTO })
payment: PaymentDTO;
payment!: PaymentDTO;
}