Files
umbrix/ios/Shared/Outbound.swift
problematicconsumer ede904a024 Add ios connection info
2024-02-09 20:20:31 +03:30

19 lines
359 B
Swift

public struct SBItem: Codable {
let tag: String
let type: String
let urlTestDelay: Int
enum CodingKeys: String, CodingKey {
case tag
case type
case urlTestDelay = "url-test-delay"
}
}
public struct SBGroup: Codable {
let tag: String
let type: String
let selected: String
let items: [SBItem]
}