File

src/app/shared/components/select/select-option.model.ts

Index

Properties

Constructor

constructor(selected: boolean, name: string, description: string)
Parameters :
Name Type Optional
selected boolean No
name string No
description string No

Properties

description
Type : string
name
Type : string
selected
Type : boolean
export class SelectOption {
  selected: boolean;
  name: string;
  description: string;

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

result-matching ""

    No results matching ""