damus

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

ChatroomMetadata.swift (222B)


      1 //
      2 //  ChatroomMetadata.swift
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2022-09-07.
      6 //
      7 
      8 import Foundation
      9 
     10 
     11 struct ChatroomMetadata: Decodable {
     12     let name: String?
     13     let about: String?
     14     let picture: String?
     15 }