export interface CustomCommandModel {
    CommandName: string;
    CustomCallback?: (paramter?: any) => void;
    CustomCallbackParameter: any;
}
