search
This commit is contained in:
32
app/types.ts
Normal file
32
app/types.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
export type Person = {
|
||||
personId: number;
|
||||
name: string;
|
||||
birthDate?: string | null;
|
||||
imageUrl?: string | null;
|
||||
};
|
||||
|
||||
|
||||
|
||||
export type Season = {
|
||||
seasonId: number;
|
||||
showId: number;
|
||||
startDate?: string | null;
|
||||
endDate?: string | null;
|
||||
seasonNumber?: number | null;
|
||||
participants?: Person[];
|
||||
moderators?: Person[];
|
||||
};
|
||||
|
||||
|
||||
export type Show = {
|
||||
showId: number;
|
||||
title: string;
|
||||
description?: string;
|
||||
genre?: string;
|
||||
thumbnailUrl: string;
|
||||
logoUrl?: string;
|
||||
bannerUrl?: string;
|
||||
running?: boolean;
|
||||
streamingServices?: string;
|
||||
concept?: string
|
||||
};
|
||||
Reference in New Issue
Block a user