/**
 * A simple request that contains the minimal execution information.
 */
export interface IRequest {
    /**
     * Gets the request's data.
     */
    readonly data: {
        [key: string]: any;
    };
}
