imsg/Sources/IMsgCore/DatabaseIDs.swift
2026-05-05 05:31:04 +01:00

12 lines
241 B
Swift

struct MessageID: RawRepresentable, Hashable, Sendable {
let rawValue: Int64
}
struct ChatID: RawRepresentable, Hashable, Sendable {
let rawValue: Int64
}
struct HandleID: RawRepresentable, Hashable, Sendable {
let rawValue: Int64
}