Adding missing internal qualifier

This commit is contained in:
Maxime NATUREL 2022-04-27 18:01:10 +02:00
parent d18ea43211
commit f04b67ba29
1 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import io.realm.annotations.PrimaryKey
/**
* Aggregation info concerning a live location share.
*/
class LiveLocationAggregatedSummaryEntity(
internal open class LiveLocationAggregatedSummaryEntity(
/**
* Event id of the event that started the live.
*/
@ -34,4 +34,6 @@ class LiveLocationAggregatedSummaryEntity(
val endOfLiveTimestampAsMilliseconds: Long? = null,
val lastLocation: String? = null
) : RealmObject()
) : RealmObject() {
companion object
}