export class Control {
  method: string;
  icon: string;

  constructor(method: string, icon: string) {
    this.method = method;
    this.icon = icon;
  }
}
