mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
23 lines
534 B
TypeScript
23 lines
534 B
TypeScript
import {
|
|
Component,
|
|
Input,
|
|
} from '@angular/core';
|
|
|
|
import { Metadata } from '../../../../core/submission/models/sherpa-policies-details.model';
|
|
|
|
/**
|
|
* This component represents a section that contains the matadata informations.
|
|
*/
|
|
@Component({
|
|
selector: 'ds-metadata-information',
|
|
templateUrl: './metadata-information.component.html',
|
|
styleUrls: ['./metadata-information.component.scss'],
|
|
})
|
|
export class MetadataInformationComponent {
|
|
/**
|
|
* Metadata to show information from
|
|
*/
|
|
@Input() metadata: Metadata;
|
|
|
|
}
|