conversations-classic-ios/old/AppCore/Models/ServerFeature.swift
2024-08-11 13:09:29 +02:00

11 lines
191 B
Swift

import Foundation
struct ServerFeature: Stateable, Identifiable {
let xep: String
let name: String
let xmppId: String?
let description: String?
var id: String { xep }
}