package com.bitchat.android.util class NotificationIntervalManager { private var _lastNetworkNotificationTime = 0L val lastNetworkNotificationTime: Long get() = _lastNetworkNotificationTime val recentlySeenPeers: MutableSet = mutableSetOf() fun setLastNetworkNotificationTime(notificationTime: Long) { _lastNetworkNotificationTime = notificationTime } }