ppob-backend/src/users/dto/create-supplier.dto.ts

13 lines
179 B
TypeScript

import { IsNotEmpty } from 'class-validator';
export class CreateSupplierDto {
@IsNotEmpty()
name: string;
@IsNotEmpty()
code: string;
@IsNotEmpty()
url: string;
}