Files
aris-old/IrisCompanion/iris/Models/Winner.swift

23 lines
519 B
Swift
Raw Permalink Normal View History

2026-01-08 19:16:32 +00:00
//
// Winner.swift
// iris
//
// Created by Codex.
//
import Foundation
2026-01-10 00:25:36 +00:00
enum FeedItemType: String, Codable, CaseIterable {
2026-01-08 19:16:32 +00:00
case weatherAlert = "WEATHER_ALERT"
case weatherWarning = "WEATHER_WARNING"
case transit = "TRANSIT"
case poiNearby = "POI_NEARBY"
case info = "INFO"
case nowPlaying = "NOW_PLAYING"
case currentWeather = "CURRENT_WEATHER"
2026-01-10 00:25:36 +00:00
case calendarEvent = "CALENDAR_EVENT"
case stock = "STOCK"
case transitAlert = "TRANSIT_ALERT"
2026-01-08 19:16:32 +00:00
case allQuiet = "ALL_QUIET"
}