14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
|
|
export interface VideoItemModel {
|
||
|
|
id: number;
|
||
|
|
title: string;
|
||
|
|
desc: null | string;
|
||
|
|
view: number | null;
|
||
|
|
size: number | null;
|
||
|
|
duration: number | null;
|
||
|
|
banner_url: null | string;
|
||
|
|
trailer_url: null | string;
|
||
|
|
content_url: null | string;
|
||
|
|
horjun_trailer_url: null | string;
|
||
|
|
horjun_content_url: null | string;
|
||
|
|
}
|