mobilka_norm/src/main/kotlin/domain/request/ChangeProfileRequest.kt

10 lines
183 B
Kotlin
Raw Normal View History

2025-01-27 12:45:00 +00:00
package org.example.domain.request
class ChangeProfileRequest (
val userId: Int,
val lastname: String,
val email: String,
val phone: String,
val adress: String
)