mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
533 B
Swift
24 lines
533 B
Swift
import Foundation
|
|
import Postbox
|
|
import TelegramCore
|
|
|
|
public struct ReactionGestureItemValue {
|
|
public var value: String
|
|
public var text: String
|
|
public var file: TelegramMediaFile
|
|
|
|
public init(value: String, text: String, file: TelegramMediaFile) {
|
|
self.value = value
|
|
self.text = text
|
|
self.file = file
|
|
}
|
|
}
|
|
|
|
public final class ReactionGestureItem {
|
|
public let value: ReactionGestureItemValue
|
|
|
|
public init(value: ReactionGestureItemValue) {
|
|
self.value = value
|
|
}
|
|
}
|