damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

Drafts.swift (293B)


      1 //
      2 //  Drafts.swift
      3 //  damus
      4 //
      5 //  Created by Terry Yiu on 2/12/23.
      6 //
      7 
      8 import Foundation
      9 
     10 class Drafts: ObservableObject {
     11     @Published var post: NSMutableAttributedString = NSMutableAttributedString(string: "")
     12     @Published var replies: [NostrEvent: NSMutableAttributedString] = [:]
     13 }