mirror of
https://github.com/NinjaCheetah/RIT-Dining.git
synced 2026-03-03 12:45:28 -05:00
Also fixed a bug where locations with overlapping close and open times would show "Closing Soon" for 30 minutes just to then switch to "Open" when it rolled over.
17 lines
241 B
Swift
17 lines
241 B
Swift
//
|
|
// FDMPMealPeriods.swift
|
|
// TigerDine
|
|
//
|
|
// Created by Campbell on 11/8/25.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
let fdmpMealPeriodsMap: [Int: String] = [
|
|
1: "Breakfast",
|
|
2: "Lunch",
|
|
3: "Dinner",
|
|
6: "Late Night",
|
|
8: "All Day",
|
|
]
|