fixed get my assets

This commit is contained in:
Kevsl
2024-06-07 12:35:47 +02:00
parent 3c0f14b02e
commit 2db99d1354
5 changed files with 11 additions and 67 deletions

View File

@@ -0,0 +1,9 @@
import { IsInt, IsString } from 'class-validator';
export class PromoCodeDto {
@IsString()
name: string;
@IsInt()
value: number;
}