src/app/shared/components/select/select-option.model.ts
Properties |
constructor(selected: boolean, name: string, description: string)
|
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;
}
}