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