12 lines
205 B
TypeScript
Executable File
12 lines
205 B
TypeScript
Executable File
import { IsNotEmpty, IsOptional, IsString } from "class-validator";
|
|
|
|
export class ValidateDiscountDto {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
code: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
productId?: string;
|
|
}
|