You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/media-details/components/album/panels/album-information-panel/album-information-panel.com...

13 lines
442 B

import { Component, Input, ViewEncapsulation } from "@angular/core";
import { ISearchArtistResult } from "../../../../../interfaces";
@Component({
templateUrl: "./album-information-panel.component.html",
styleUrls: ["../../../../media-details.component.scss"],
selector: "album-information-panel",
encapsulation: ViewEncapsulation.None
})
export class AlbumInformationPanel {
@Input() public album: ISearchAlbumResult;
}