user-video-rate.model.ts 141 B

123456
  1. import { UserVideoRateType } from './user-video-rate.type'
  2. export interface UserVideoRate {
  3. videoId: number
  4. rating: UserVideoRateType
  5. }