mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-23 09:56:00 +03:00
Fix final members in Entity
This commit is contained in:
parent
f04b67ba29
commit
25ca50c7bd
1 changed files with 4 additions and 3 deletions
|
@ -26,14 +26,15 @@ internal open class LiveLocationAggregatedSummaryEntity(
|
|||
/**
|
||||
* Event id of the event that started the live.
|
||||
*/
|
||||
@PrimaryKey
|
||||
var eventId: String = "",
|
||||
|
||||
var roomId: String = "",
|
||||
|
||||
var isLive: Boolean? = null,
|
||||
|
||||
val endOfLiveTimestampAsMilliseconds: Long? = null,
|
||||
var endOfLiveTimestampAsMilliseconds: Long? = null,
|
||||
|
||||
val lastLocation: String? = null
|
||||
var lastLocation: String? = null
|
||||
) : RealmObject() {
|
||||
companion object
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue