projects/wms-framework/src/lib/models/events/StartupEventArgs.ts
Model for the arguments of the startup event
Properties |
|
constructor(InitParams: ISimpleDictionary<string | string>)
|
||||||||
Creates an instance of StartupEventArgs.
Parameters :
|
Public InitParams |
Type : ISimpleDictionary<string | string>
|
The init parameters
|
import { ISimpleDictionary } from '../../baseframework';
/**
* Model for the arguments of the startup event
*
* @export
* @class StartupEventArgs
* @wType System.Windows.StartupEventArgs
*/
export class StartupEventArgs {
/**
*Creates an instance of StartupEventArgs.
* @param {ISimpleDictionary<string, string>} InitParams The init parameters
* @memberof StartupEventArgs
*/
constructor(public InitParams: ISimpleDictionary<string, string>) {}
}