Files
forkmessager/client-mobile/profiles/domain/repository/ProfileRepository.kt
Халимов Рустам 1fb1be47dd Приложение
2026-04-14 01:15:54 +03:00

13 lines
441 B
Kotlin

package profiles.domain.repository
import android.net.Uri
import profiles.data.remote.dto.ProfileDto
interface ProfileRepository {
suspend fun getProfile(id: String): Result<ProfileDto>
suspend fun getMyProfile(): Result<ProfileDto>
suspend fun updateProfile(displayName: String?, bio: String?): Result<ProfileDto>
suspend fun uploadAvatar(uri: Uri): Result<ProfileDto>
suspend fun removeAvatar(): Result<ProfileDto>
}