armisa-models
Version:
models of armisa!
17 lines (15 loc) • 384 B
text/typescript
export interface INewProperties {
propertyName: string;
controlRef: React.RefObject<HTMLButtonElement>;
caption: string;
accessDenied: boolean;
}
export class SelfButton {
private _properties?: INewProperties;
public get properties() {
return this._properties!;
}
public set properties(value: INewProperties) {
this._properties = value;
}
}