Implemented the ArchiveList model in the library target.

This commit is contained in:
Javier Cicchelli 2025-03-12 00:36:38 +01:00
parent 4d4ce5d647
commit fa50c77421

View File

@ -0,0 +1,15 @@
import Hummingbird
struct ArchiveList: ResponseCodable {
// MARK: Properties
let archives: [String]
// MARK: Initialisers
init(_ archives: [String]) {
self.archives = archives
}
}