]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form-role.model.ts
import 15.2.0 Octopus source
[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 enabled = true;
9
10 constructor(name: string, description: string) {
11 this.name = name;
12 this.description = description;
13 }
14 }