2017-07-10 19:43:21 +02:00
|
|
|
import { RemoteVideoRequest } from './remote-video-request.model'
|
|
|
|
|
|
|
|
export interface RemoteVideoRemoveData {
|
2017-07-11 16:01:56 +02:00
|
|
|
uuid: string
|
2017-07-10 19:43:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface RemoteVideoRemoveRequest extends RemoteVideoRequest {
|
2017-10-24 19:41:09 +02:00
|
|
|
type: 'remove-video'
|
2017-07-10 19:43:21 +02:00
|
|
|
data: RemoteVideoRemoveData
|
|
|
|
}
|