feat: long tap like button to see users

This commit is contained in:
aayush262 2024-03-15 18:32:51 +05:30
parent c5abfa15e0
commit 5dbc01dba3
11 changed files with 186 additions and 41 deletions

View file

@ -0,0 +1,8 @@
package ani.dantotsu.profile
data class User(
val id: Int,
val name: String,
val pfp: String?,
val banner: String?,
)