Artteiv's picture
feat: in progress, lack of authenticate info
c3990d3
raw
history blame
316 Bytes
import { IsOptional, IsString } from 'class-validator';
export class UpdateBranchDto {
@IsString()
@IsOptional()
name?: string;
@IsString()
@IsOptional()
location?: string;
@IsString()
@IsOptional()
phone_number?: string;
@IsString()
@IsOptional()
owner_id?: string;
}