cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 421 B
TypeScript
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;
}