11 lines
191 B
Swift
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 }
|
||
|
}
|