mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-31 18:02:20 +00:00
15 lines
256 B
Swift
15 lines
256 B
Swift
import Foundation
|
|
|
|
class Table {
|
|
final let valueBox: ValueBox
|
|
final let tableId: Int32
|
|
|
|
init(valueBox: ValueBox, tableId: Int32) {
|
|
self.valueBox = valueBox
|
|
self.tableId = tableId
|
|
}
|
|
|
|
func beforeCommit() {
|
|
}
|
|
}
|