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"
|
2026-01-08 19:16:32 +00:00
|
|
|
case allQuiet = "ALL_QUIET"
|
|
|
|
|
}
|