From 1752ea7075939fb49dd72e0b8ea2accc2be1b02a Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Fri, 25 Mar 2022 09:59:35 +1100 Subject: Reorganise: NetworkManager -> Fetcher, Models -> dedicated groups --- foray/ForayModels.swift | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 foray/ForayModels.swift (limited to 'foray/ForayModels.swift') diff --git a/foray/ForayModels.swift b/foray/ForayModels.swift deleted file mode 100644 index c721b95..0000000 --- a/foray/ForayModels.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// ForayItems.swift -// foray -// -// Created by Nicholas Tay on 20/3/2022. -// - -import Foundation - -enum PenguinItemType: String, Decodable { - case item - case quest -} - -struct PenguinItemModel: Decodable { - let type: PenguinItemType - let releaseDate: Date - let id: String - let name: String -} -- cgit