[Setup] Documentation #10
@ -1,10 +1,22 @@
|
|||||||
import Foundation
|
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 {
|
public struct Release {
|
||||||
|
|
||||||
|
// MARK: Properties
|
||||||
|
|
||||||
|
/// The official release date (if released) of an amiibo in Australia.
|
||||||
public let australia: Date?
|
public let australia: Date?
|
||||||
|
|
||||||
|
/// The official release date (if released) of an amiibo in Europe.
|
||||||
public let europe: Date?
|
public let europe: Date?
|
||||||
|
|
||||||
|
/// The official release date (if released) of an amiibo in Japan.
|
||||||
public let japan: Date?
|
public let japan: Date?
|
||||||
|
|
||||||
|
/// The official release date (if released) of an amiibo in North America.
|
||||||
public let america: Date?
|
public let america: Date?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: - Decodable
|
// MARK: - Decodable
|
||||||
|
Loading…
x
Reference in New Issue
Block a user