]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form-role.model.ts
import ceph nautilus 14.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / auth / user-form / user-form-role.model.ts
CommitLineData
11fdf7f2
TL
1import { SelectOption } from '../../../shared/components/select/select-option.model';
2
3export class UserFormRoleModel implements SelectOption {
4 name: string;
5 description: string;
6 selected = false;
7 scopes_permissions: object;
81eedcae 8 enabled = true;
11fdf7f2
TL
9
10 constructor(name, description) {
11 this.name = name;
12 this.description = description;
13 }
14}