]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
47128c1692e4d5dc99d6c8d70dc006301ddca760
[ceph.git] /
1 import { Component, Input } from '@angular/core';
2 import { CdTableSelection } from '~/app/shared/models/cd-table-selection';
3
4 @Component({
5   selector: 'cd-nfs-cluster-details',
6   templateUrl: './nfs-cluster-details.component.html',
7   styleUrls: ['./nfs-cluster-details.component.scss']
8 })
9 export class NfsClusterDetailsComponent {
10   title = $localize`Export`;
11   @Input()
12   selection: CdTableSelection;
13 }