2024-06-19 15:06:39 +00:00
|
|
|
import Foundation
|
|
|
|
|
2024-12-18 04:08:11 +00:00
|
|
|
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
|
|
|
|
}
|
2024-06-19 15:06:39 +00:00
|
|
|
}
|