aboutsummaryrefslogtreecommitdiff
path: root/foray/ForayModels.swift
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2022-03-25 09:59:35 +1100
committerNicholas Tay <nick@windblume.net>2022-03-25 09:59:35 +1100
commit1752ea7075939fb49dd72e0b8ea2accc2be1b02a (patch)
tree04ad843bc6b05d31cc6524cffe652229e8da0ffd /foray/ForayModels.swift
parent07a6eb8325d3b67d998003d3fe5ab34e1a72f106 (diff)
downloadforayios-1752ea7075939fb49dd72e0b8ea2accc2be1b02a.tar.gz
forayios-1752ea7075939fb49dd72e0b8ea2accc2be1b02a.tar.bz2
forayios-1752ea7075939fb49dd72e0b8ea2accc2be1b02a.zip
Reorganise: NetworkManager -> Fetcher, Models -> dedicated groups
Diffstat (limited to 'foray/ForayModels.swift')
-rw-r--r--foray/ForayModels.swift20
1 files changed, 0 insertions, 20 deletions
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
-}