weareopensource/Swift

View on GitHub
waosSwift/modules/home/models/PagesResponses.swift

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Model Tasks Responses
 */

struct PagesResponse {
    var data: [Pages]
}
extension PagesResponse: Codable {
    enum PagesResponseCodingKeys: String, CodingKey {
        case data
    }
}