11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
|
|
export class Request {
|
||
|
|
|
||
|
|
constructor( method, payload = {} ) {
|
||
|
|
|
||
|
|
this.method = method; // method name to call on Controller, e.g. "Ping"
|
||
|
|
|
||
|
|
this.payload = payload; // any data for the method
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|