rdt-client/client/src/app/torrent-download/torrent-download.component.ts
2021-01-12 20:46:07 -07:00

16 lines
413 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { Download } from '../models/download.model';
@Component({
selector: '[app-torrent-download]',
templateUrl: './torrent-download.component.html',
styleUrls: ['./torrent-download.component.scss'],
})
export class TorrentDownloadComponent implements OnInit {
@Input()
public download: Download;
constructor() {}
ngOnInit(): void {}
}