PeerTube/shared/models/videos/video-password.model.ts

8 lines
139 B
TypeScript

export interface VideoPassword {
id: number
password: string
videoId: number
createdAt: Date | string
updatedAt: Date | string
}