TM-SGNL-iOS/SignalServiceKit/Util/TSYapDatabaseObject+SQLiteRowId.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

10 lines
200 B
Swift

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
public extension TSYapDatabaseObject {
var sqliteRowId: Int64? {
return grdbId?.int64Value
}
}