UIAngular/Client/src/app/components/home/video-services.ts

12 lines
202 B
TypeScript

export class VideoServices {
videos: VideoService[];
}
export class VideoService {
isReady: boolean;
title: string;
src: string;
date: Date;
archived: boolean;
yt: string;
}