Files
movieroom-front/src/interfaces.ts
2021-12-30 01:30:40 +03:00

10 lines
162 B
TypeScript

export interface Room {
id: string;
magnet: string;
createdAt: Date;
movie?: string;
downloaded?: boolean;
downloadedAt?: Date;
position: number;
}