Swiftgram/Postbox/Table.swift
2016-03-28 17:23:33 +03:00

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() {
}
}