src/property/property-command.ts
Standard 'command' interface for controlling properties on most entities.
Properties |
|
constructor(properties: PropertySet)
|
||||||||
Defined in src/property/property-command.ts:14
|
||||||||
Constructor
Parameters :
|
Public properties |
properties:
|
Type : PropertySet
|
Defined in src/property/property-command.ts:19
|
The Properties to include in the command |
import { PropertySet } from '../models/index';
/**
* Property command structure
*/
export interface IPropertyCommand {
/** The properties to submit */
properties: PropertySet;
}
/**
* Standard 'command' interface for controlling properties on most entities.
*/
export class PropertyCommand implements IPropertyCommand {
/**
* Constructor
* @param properties The Properties to include in the command
*/
constructor(public properties: PropertySet) {}
}