From fa50c77421220bb6afb6871876eb90c3c066f1b0 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 12 Mar 2025 00:36:38 +0100 Subject: [PATCH] Implemented the ArchiveList model in the library target. --- Library/Sources/Internal/Models/ArchiveList.swift | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Library/Sources/Internal/Models/ArchiveList.swift diff --git a/Library/Sources/Internal/Models/ArchiveList.swift b/Library/Sources/Internal/Models/ArchiveList.swift new file mode 100644 index 0000000..8520b84 --- /dev/null +++ b/Library/Sources/Internal/Models/ArchiveList.swift @@ -0,0 +1,15 @@ +import Hummingbird + +struct ArchiveList: ResponseCodable { + + // MARK: Properties + + let archives: [String] + + // MARK: Initialisers + + init(_ archives: [String]) { + self.archives = archives + } + +}