]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form-role.model.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / auth / user-form / user-form-role.model.ts
1 import { SelectOption } from '../../../shared/components/select/select-option.model';
2
3 export class UserFormRoleModel implements SelectOption {
4 name: string;
5 description: string;
6 selected = false;
7 scopes_permissions: object;
8
9 constructor(name, description) {
10 this.name = name;
11 this.description = description;
12 }
13 }