Signal-iOS/SignalServiceKit/Messages/DeviceMessage.swift
2025-03-05 11:26:14 -06:00

19 lines
376 B
Swift

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
struct DeviceMessage {
let type: SSKProtoEnvelopeType
let destinationDeviceId: UInt32
let destinationRegistrationId: UInt32
let content: Data
}
struct SentDeviceMessage {
var destinationDeviceId: UInt32
var destinationRegistrationId: UInt32
}