aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-password.model.ts
blob: c0280b9b9041b2736d9266c44ef2a49c4e164416 (plain) (blame)
1
2
3
4
5
6
7
export interface VideoPassword {
  id: number
  password: string
  videoId: number
  createdAt: Date | string
  updatedAt: Date | string
}