Projet

Général

Profil

Paste
Statistiques
| Branche: | Révision:

root / src / app / settings / radio-option.ts @ 2c8d373c

Historique | Voir | Annoter | Télécharger (183 octets)

1
export class RadioOption {
2
  label: string;
3
  uri: string;
4
  selected: boolean = false;
5

    
6
  constructor(label: string, uri: string) {
7
    this.label = label;
8
    this.uri = uri;
9
  }
10
}
Redmine Appliance - Powered by TurnKey Linux