import { Deserializable} from './deserializable';

export class ToolbarButton implements Deserializable {
  id: string;
  icon: string;
  visible: boolean;
  enabled: boolean;
  tooltip: string;
  filled: boolean;
  label: string;
  deserialize(input: any) {
    Object.assign(this, input);
    return this;
  }
}

result-matching ""

    No results matching ""