scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
15 lines (14 loc) • 461 B
TypeScript
import { IMaster } from '../interfaces/i-master';
import { IMasterV1 } from '../interfaces/i-master-v1';
export declare class MasterEntity implements IMaster {
catalog: string | null;
companyId: string;
containerId: string;
database: string | null;
hostName: string | null;
hostUrl: string | null;
masterV1: IMasterV1 | null;
password: string | null;
userName: string | null;
constructor(data?: Partial<MasterEntity>);
}