2023-10-15 16:48:21 +04:00

10 lines
212 B
Swift

import Foundation
final class ChatRecentActionsInteraction {
let displayInfoAlert: () -> Void
init(displayInfoAlert: @escaping () -> Void) {
self.displayInfoAlert = displayInfoAlert
}
}