EntrepriseEntity.kt
15 lignes · 398 octets
package fr.ebii.card2vcf.data import androidx.room.Entity import androidx.room.PrimaryKey @Entity(tableName = "entreprises") data class EntrepriseEntity( @PrimaryKey(autoGenerate = true) val localId: Long = 0, val serverId: String? = null, val nom: String = "", val secteur: String = "", val creePar: String = "", val createdAt: Long = 0L, val updatedAt: Long = 0L, )
GitRust