turkmentv_front/models/videoItem.model.ts

14 lines
326 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
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;
}