aboutsummaryrefslogtreecommitdiff
path: root/foray/ForayModels.swift
blob: c721b95a25c84143a9722c81c8b28ef2e52e63e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  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
}