scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
13 lines (12 loc) • 324 B
TypeScript
import { IMasterV1 } from './i-master-v1';
export interface IMaster {
catalog: string | null;
companyId: string;
containerId: string;
database: string | null;
hostName: string | null;
hostUrl: string | null;
password: string | null;
userName: string | null;
masterV1: IMasterV1 | null;
}