conversations-classic-ios/ConversationsClassic/AppCore/Models/ServerFeature.swift

11 lines
191 B
Swift
Raw Normal View History

2024-07-22 12:02:33 +00:00
import Foundation
struct ServerFeature: Stateable, Identifiable {
let xep: String
let name: String
let xmppId: String?
let description: String?
var id: String { xep }
}