movie-night-web/src/types/showing.ts

9 lines
144 B
TypeScript
Raw Normal View History

import type { Movie } from "~/types/movie";
export type Showing = {
owner: number;
public: boolean;
movie: Movie;
showtime: string;
};