]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
49f29330fa39c7e4848249ac495453c7d4a77a85
[ceph-ci.git] /
1 export class SelectBadgesOption {
2   selected: boolean;
3   name: string;
4   description: string;
5
6   constructor(selected: boolean, name: string, description: string) {
7     this.selected = selected;
8     this.name = name;
9     this.description = description;
10   }
11 }