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 + } + +}