Fix final members in Entity

This commit is contained in:
Maxime NATUREL 2022-04-28 11:58:40 +02:00
parent f04b67ba29
commit 25ca50c7bd
1 changed files with 4 additions and 3 deletions

View File

@ -26,14 +26,15 @@ internal open class LiveLocationAggregatedSummaryEntity(
/** /**
* Event id of the event that started the live. * Event id of the event that started the live.
*/ */
@PrimaryKey
var eventId: String = "", var eventId: String = "",
var roomId: String = "",
var isLive: Boolean? = null, var isLive: Boolean? = null,
val endOfLiveTimestampAsMilliseconds: Long? = null, var endOfLiveTimestampAsMilliseconds: Long? = null,
val lastLocation: String? = null var lastLocation: String? = null
) : RealmObject() { ) : RealmObject() {
companion object companion object
} }