mirror of
https://github.com/NinjaCheetah/RIT-Dining.git
synced 2026-01-17 12:05:57 -05:00
Widgets for locations with multiple opening periods will still only display the first time span, but the bar will now show multiple filled in sections and the opening status label will correctly represent both periods.
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",
|
|
]
|