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

18 lines
238 B
Swift

//
// PostView.swift
// watchapp Watch App
//
// Created by Alexander Harding on 8/2/23.
//
import Foundation
struct PostView: Codable, Identifiable {
var id: Int {
post.id
}
let post: Post
let saved: Bool
}