Trần Viết Sơn
add branch and branch menu
f97bd0c
raw
history blame contribute delete
182 Bytes
import { IsOptional, IsString } from 'class-validator';
export class CreateBranchMenuDto {
@IsString()
menu_id: string;
@IsString()
@IsOptional()
description?: string;
}