Files
umbrix/ios/Shared/Outbound.swift

19 lines
359 B
Swift
Raw Permalink Normal View History

2024-02-09 20:20:24 +03:30
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]
}