13 lines
184 B
Swift
13 lines
184 B
Swift
//
|
|
// GetPostsResponse.swift
|
|
// watchapp Watch App
|
|
//
|
|
// Created by Alexander Harding on 8/2/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct GetPostsResponse: Codable {
|
|
let posts: [PostView]
|
|
}
|