interface ClassSchedule {
    classroom: string;
    day: Day;
    location: string;
    period: [start: Period, end: Period];
}

Properties

classroom: string
day: Day
location: string
period: [start: Period, end: Period]
""