blob: a9b1a17f3c9030a28e9d1196b58f1194b190bf8e (
plain) (
tree)
|
|
import { Account } from '../actors'
import { Video } from './video.model'
export interface VideoChangeOwnership {
id: number
status: VideoChangeOwnershipStatus
initiatorAccount: Account
nextOwnerAccount: Account
video: Video
createdAt: Date
}
export enum VideoChangeOwnershipStatus {
WAITING = 'WAITING',
ACCEPTED = 'ACCEPTED',
REFUSED = 'REFUSED'
}
|