aboutsummaryrefslogtreecommitdiff
path: root/foray/ForayModels.swift
diff options
context:
space:
mode:
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
-}