Donggyu1998

Untitled

Jun 7th, 2021
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import androidx.room.ColumnInfo
  2. import androidx.room.Entity
  3. import androidx.room.PrimaryKey
  4.  
  5. @Entity
  6. class User {
  7. @PrimaryKey(autoGenerate = true)
  8. var uid = 0
  9.  
  10. @ColumnInfo(name = "first_name")
  11. var firstName: String? = null
  12.  
  13. @ColumnInfo(name = "last_name")
  14. var lastName: String? = null
  15. }
Add Comment
Please, Sign In to add comment