14 lines
318 B
Swift
14 lines
318 B
Swift
import Foundation
|
|
|
|
public struct UserAgent: Codable & Equatable {
|
|
public let uuid: String
|
|
public let software: String
|
|
public let device: String
|
|
|
|
public init(uuid: String, software: String, device: String) {
|
|
self.uuid = uuid
|
|
self.software = software
|
|
self.device = device
|
|
}
|
|
}
|