diff --git a/Shared/PostCollection/PostCollection.swift b/Shared/PostCollection/PostCollection.swift index 5fd660c..0b2b57c 100644 --- a/Shared/PostCollection/PostCollection.swift +++ b/Shared/PostCollection/PostCollection.swift @@ -1,11 +1,12 @@ import Foundation struct PostCollection: Identifiable, Hashable { let id = UUID() let title: String } +let allPostsCollection = PostCollection(title: "All Posts") let defaultDraftCollection = PostCollection(title: "Drafts") let testPostCollection1 = PostCollection(title: "Collection 1") let testPostCollection2 = PostCollection(title: "Collection 2") let testPostCollection3 = PostCollection(title: "Collection 3")