From 5dbf310f921393c9fefcaa669980c5779f287f66 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sun, 23 Apr 2023 14:29:36 +0200 Subject: [PATCH] Written the documentation for the LastUpdated model. --- Sources/Models/LastUpdated.swift | 6 ++++++ 1 file changed, 6 insertions(+) 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