1
0
Fork 0
peertube/shared/models/videos/rate/account-video-rate.model.ts

8 lines
180 B
TypeScript

import { UserVideoRateType } from './user-video-rate.type'
import { Video } from '../video.model'
export interface AccountVideoRate {
video: Video
rating: UserVideoRateType
}