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;
  }
}
