RdvEntity.kt
20 lignes · 559 octets
package fr.ebii.card2vcf.data import androidx.room.Entity import androidx.room.PrimaryKey @Entity(tableName = "rdv") data class RdvEntity( @PrimaryKey(autoGenerate = true) val localId: Long = 0, val serverId: String? = null, val titre: String = "", val description: String = "", val lieu: String = "", val debutMs: Long = 0L, val finMs: Long = 0L, val contactIdsJson: String = "[]", val projetId: String? = null, val updatedAt: Long = 0L, val calendarEventId: Long? = null, val dirtyLocal: Boolean = false, )
GitRust