Trần Viết Sơn
add branch and branch menu
f97bd0c
raw
history blame
211 Bytes
import { IsString } from 'class-validator';
export class CreateBranchDto {
@IsString()
id: string;
@IsString()
name: string;
@IsString()
location: string;
@IsString()
phone_number: string;
}