]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form.model.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / auth / user-form / user-form.model.ts
CommitLineData
11fdf7f2
TL
1export class UserFormModel {
2 username: string;
3 password: string;
9f95a23c 4 pwdExpirationDate: number;
11fdf7f2
TL
5 name: string;
6 email: string;
7 roles: Array<string>;
9f95a23c
TL
8 enabled: boolean;
9 pwdUpdateRequired: boolean;
11fdf7f2 10}