Closed
Description
Hi i have a Tree object
with parent is object of the same type
how can i solve this?
struct Pagina : ParseObject {
var objectId: String?
var createdAt: Date?
var updatedAt: Date?
var ACL: ParseACL?
var titolo: [String: String]?
var parent: Pagina? <--- i can't do this because we are in a struct...
}