[Setup] Documentation #10

Merged
javier merged 12 commits from setup/documentation into main 2023-04-23 13:16:23 +00:00
Showing only changes of commit b06ebaa192 - Show all commits

View File

@ -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