]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form-edit-request.model.ts
9187b024d9d017fcb742452ad66c23ed609cd745
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-form-edit-request.model.ts
1 import { RbdConfigurationEntry } from '~/app/shared/models/configuration';
2
3 export class RbdFormEditRequestModel {
4 name: string;
5 size: number;
6 features: Array<string> = [];
7 configuration: RbdConfigurationEntry[];
8 }