aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-import.model.ts
blob: 8581085991cddcbf12c305de89c4893f6d3efc1e (plain) (blame)
1
2
3
4
5
6
7
import { Video } from './video.model'

export interface VideoImport {
  targetUrl: string

  video: Video & { tags: string[] }
}