package com.example.roomtest import androidx.room.* import kotlinx.coroutines.flow.Flow // Entity @Entity(tableName = "departements") class Dept( @PrimaryKey @ColumnInfo(name = "name") val name: String )