diff --git a/src/stores/branch/types.ts b/src/stores/branch/types.ts index 80469979..26695817 100644 --- a/src/stores/branch/types.ts +++ b/src/stores/branch/types.ts @@ -1,4 +1,5 @@ import { District, Province, SubDistrict } from '../address'; +import { BranchContact } from '../branch-contact/types'; import { Status } from '../types'; export type Branch = { @@ -28,6 +29,7 @@ export type Branch = { taxNo: string; id: string; code: string; + contact: BranchContact[]; }; export type BranchWithChildren = Branch & { branch: Branch[] };