Initial commit
This commit is contained in:
13
src/app/_models/video.ts
Normal file
13
src/app/_models/video.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface Videos {
|
||||
data: Video[];
|
||||
}
|
||||
export interface Video {
|
||||
id: number;
|
||||
user_id: number;
|
||||
name: string;
|
||||
description: string;
|
||||
link_miniature: string;
|
||||
link_video: string;
|
||||
created_at: Date;
|
||||
updated_at: Date;
|
||||
}
|
||||
Reference in New Issue
Block a user