Page MenuHomeMusing Studio

PostCollection.swift
No OneTemporary

PostCollection.swift

import Foundation
struct PostCollection: Identifiable, Hashable {
let id = UUID()
let title: String
}
let allPostsCollection = PostCollection(title: "All Posts")
let defaultDraftCollection = PostCollection(title: "Drafts")
let userCollections = [
PostCollection(title: "Collection 1"),
PostCollection(title: "Collection 2"),
PostCollection(title: "Collection 3")
]
let postCollections = [
allPostsCollection,
defaultDraftCollection,
userCollections[0],
userCollections[1],
userCollections[2]
]

File Metadata

Mime Type
text/x-c
Expires
Thu, Oct 9, 9:02 PM (13 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3438155

Event Timeline