Skip to content

Commit

Permalink
[feat] #4 entity
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Apr 13, 2024
1 parent c8ad030 commit 3cc845c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/database/src/main/java/org/sopt/database/entity/SoptEntity.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.sopt.database.entity

import androidx.room.Entity
import androidx.room.PrimaryKey

@Entity(tableName = "table_sopt")
data class SoptEntity(
@PrimaryKey(autoGenerate = true)
val id: Int?,
val name: String,
val hobby: String,
)

0 comments on commit 3cc845c

Please sign in to comment.