diff --git a/Sources/Models/LastUpdated.swift b/Sources/Models/LastUpdated.swift index 0fefe45..1b78c00 100644 --- a/Sources/Models/LastUpdated.swift +++ b/Sources/Models/LastUpdated.swift @@ -1,7 +1,13 @@ import Foundation +/// This model represents the latest date when the remote API has been updated. public struct LastUpdated { + + // MARK: Properties + + /// The date of the latest update of the remote API. public let timestamp: Date + } // MARK: - Decodable