11 lines
123 B
Swift
11 lines
123 B
Swift
//
|
|
// FactsResponse.swift
|
|
// CatFactsKit
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FactsResponse: Codable {
|
|
let data: [String]
|
|
}
|