another.im-ios/AnotherXMPP/models/UserAgent.swift
2024-12-18 05:08:11 +01:00

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
}
}