1
Fork 0
This repository has been archived on 2025-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
mobilefort/MobileFort/MobileFort/Common.swift

14 lines
215 B
Swift

import Foundation
enum PostType: String, Decodable {
case picture
}
struct Post: Decodable, Identifiable {
let id: Int
let title: String?
let content: String
let postType: PostType
}