[Feature] Models of the service #1

Merged
javier merged 6 commits from feature/models into main 2023-04-18 18:37:09 +00:00
Showing only changes of commit 9f7a04b044 - Show all commits

View File

@ -0,0 +1,18 @@
public struct Amiibo {
public let type: String
public let head: String
public let tail: String
public let name: String
public let character: String
public let amiiboSeries: String
public let gameSeries: String
public let image: String
public let release: Release
public let games3DS: [Game]?
public let gamesWiiU: [Game]?
public let gamesSwitch: [Game]?
}
// MARK: - Decodable
extension Amiibo: Decodable {}