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;
}
