Files
psp_api/src/suppliers/dto/update-supplier.dto.ts
T

12 lines
209 B
TypeScript
Raw Normal View History

export class UpdateSupplierDto {
firstName?: string
lastName?: string
email?: string
mobileNumber?: string
address?: string
city?: string
state?: string
country?: string
isActive?: boolean
}