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