more filters

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-05-24 14:34:21 -07:00
parent 097cc54bba
commit 8aac880bb5
8 changed files with 155 additions and 62 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// EventsModel.swift
// damus
//
// Created by William Casarin on 2022-05-24.
//
import Foundation
class EventsModel: ObservableObject {
var has_event: Set<String> = Set()
@Published var events: [NostrEvent] = []
init() {
}
}