// // ForayItems.swift // foray // // Created by Nicholas Tay on 20/3/2022. // import Foundation enum ItemType: String, Decodable { case item case quest } struct YearSection { var year: Date var items: [PenguinItem] } struct PenguinItem: Decodable { var type: ItemType var releaseDate: Date var id: String var name: String }