Профиль, редактирование без аватара

This commit is contained in:
Халимов Рустам
2026-04-16 15:41:22 +03:00
parent 8409c51842
commit cea3f4d669
45 changed files with 1063 additions and 178 deletions

View File

@@ -25,8 +25,11 @@ interface StoryApi {
}
data class StoryGroupDto(
val userId: String,
val username: String,
@com.google.gson.annotations.SerializedName("userId")
val userId: String?,
@com.google.gson.annotations.SerializedName("username", alternate = ["userName"])
val username: String?,
@com.google.gson.annotations.SerializedName("avatar", alternate = ["avatarUrl"])
val avatar: String?,
val stories: List<StoryDto>
)