Add FollowSet class, and property in User.

This commit is contained in:
KotlinGeekDev
2024-10-26 13:15:43 +01:00
parent c79157f415
commit afca104b87
2 changed files with 13 additions and 1 deletions
@@ -76,6 +76,13 @@ class PeopleListEvent(
}
}
class FollowSet(
val isPrivate: Boolean,
val title: String,
val description: String?,
val profileList: Set<String>,
)
@Immutable
class UsersAndWords(
val users: Set<String> = setOf(),