]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
bf05c194a393c46166ea84a0abb96846fb42dff2
[ceph-ci.git] /
1 import { Component, Input } from '@angular/core';
2 import { Icons } from '~/app/shared/enum/icons.enum';
3
4 @Component({
5   selector: 'cd-rgw-sync-metadata-info',
6   templateUrl: './rgw-sync-metadata-info.component.html',
7   styleUrls: ['./rgw-sync-metadata-info.component.scss']
8 })
9 export class RgwSyncMetadataInfoComponent {
10   icons = Icons;
11
12   @Input()
13   metadataSyncInfo: any = {};
14
15   constructor() {}
16 }