UNPKG

cecon-interfaces

Version:
15 lines (14 loc) 421 B
import { IMottuAddress } from './i-address'; import { IMottuStoreMatrix } from './i-store-matrix'; import { IMottuStoreResponsible } from './i-store-responsible'; export interface IMottuStore { address: IMottuAddress; balance: number; cnpj: string; email: string; id: number; marketplaceBranchId: number; matrix: IMottuStoreMatrix; name: string; responsible: IMottuStoreResponsible; }