10 lines
153 B
TypeScript
10 lines
153 B
TypeScript
export interface Program {
|
|
id: number;
|
|
day_of_week: number;
|
|
day_label: string;
|
|
time: string;
|
|
title: string;
|
|
host: string;
|
|
genre: string;
|
|
}
|