ios_app_v2/yobble/Models/ChatDeepLink.swift
2025-10-21 19:57:43 +03:00

9 lines
164 B
Swift

import Foundation
struct ChatDeepLink: Identifiable {
let id = UUID()
let chatId: String
let chatProfile: ChatProfile?
let message: MessageItem?
}