Made the "usage" property of the Amiibo.Game model optional.

This commit is contained in:
Javier Cicchelli 2023-04-20 01:25:54 +02:00
parent 83950ceb6e
commit 55f1b4824e

View File

@ -2,7 +2,7 @@ extension Amiibo {
public struct Game { public struct Game {
public let identifiers: [String] public let identifiers: [String]
public let name: String public let name: String
public let usage: [Usage] public let usage: [Usage]?
} }
} }