blob: e789367dc5a59f8d74587738b6f3eff8468dfb09 (
plain) (
blame)
1
2
3
4
5
6
7
|
import { UserVideoRateType } from './user-video-rate.type'
import { Video } from '../video.model'
export interface AccountVideoRate {
video: Video
rating: UserVideoRateType
}
|