Make PostCollection type conform to Hashable

This commit is contained in:
Angelo Stavrow 2020-07-31 16:25:31 -04:00
parent 54d494ccef
commit f8de848400
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -1,6 +1,6 @@
import Foundation
struct PostCollection: Identifiable {
struct PostCollection: Identifiable, Hashable {
let id = UUID()
let title: String
}