export interface IEngineCredential {
    storeId?: string;
    storeName?: string;
    password: string;
    username: string;
    token?: string;
    endpoint?: string;
    subscriptionKey?: string;
    autoConfirm?: boolean;
}
