Page MenuHomeMusing Studio

PostCollection.swift
No OneTemporary

PostCollection.swift

import Foundation
import WriteFreely
class PostCollection: Identifiable {
let id = UUID()
var title: String
var wfCollection: WFCollection?
init(title: String) {
self.title = title
}
}
extension PostCollection {
static func == (lhs: PostCollection, rhs: PostCollection) -> Bool {
return lhs.id == rhs.id
}
}

File Metadata

Mime Type
text/x-c++
Expires
Thu, Apr 2, 5:40 AM (15 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3678484

Event Timeline