Written the documentation for the Release model.

This commit is contained in:
Javier Cicchelli 2023-04-23 14:16:37 +02:00
parent 7a6d65a290
commit b06ebaa192

View File

@ -1,10 +1,22 @@
import Foundation
/// This model struct represents a collection of official release dates (if released) of an amiibo in different markets around the world.
public struct Release {
// MARK: Properties
/// The official release date (if released) of an amiibo in Australia.
public let australia: Date?
/// The official release date (if released) of an amiibo in Europe.
public let europe: Date?
/// The official release date (if released) of an amiibo in Japan.
public let japan: Date?
/// The official release date (if released) of an amiibo in North America.
public let america: Date?
}
// MARK: - Decodable