another.im-ios/AnotherXMPP/models/UserAgent.swift

14 lines
318 B
Swift
Raw Permalink Normal View History

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
}