summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select-option.model.ts
blob: bbd970c6fc25f35db279583c46d22419dc6d4bb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class SelectOption {
  selected: boolean;
  name: string;
  description: string;
  enabled: boolean;

  constructor(selected: boolean, name: string, description: string, enabled = true) {
    this.selected = selected;
    this.name = name;
    this.description = description;
    this.enabled = enabled;
  }
}