16 lines
222 B
Swift
16 lines
222 B
Swift
//
|
|
// ChatroomMetadata.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-09-07.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
struct ChatroomMetadata: Decodable {
|
|
let name: String?
|
|
let about: String?
|
|
let picture: String?
|
|
}
|