Files
HKSingleParty/99_references/voyager-main/ios/App/VoyagerWatch Watch App/models/Post.swift
2025-05-28 09:55:51 +08:00

17 lines
260 B
Swift

//
// Post.swift
// watchapp Watch App
//
// Created by Alexander Harding on 8/2/23.
//
import Foundation
struct Post: Codable, Identifiable {
let id: Int
let name: String
let url: String?
let body: String?
let thumbnailUrl: String?
}