damus

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

Highlight.swift (214B)


      1 //
      2 //  Highlight.swift
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2023-01-23.
      6 //
      7 
      8 import Foundation
      9 import SwiftUI
     10 
     11 
     12 enum Highlight {
     13     case none
     14     case main
     15     case reply
     16     case custom(Color, Float)
     17 }
     18