8 lines
130 B
Swift
8 lines
130 B
Swift
import Foundation
|
|
|
|
struct UserAgent: Codable & Equatable {
|
|
let uuid: String
|
|
let software: String
|
|
let device: String
|
|
}
|