Mobile/src/main/kotlin/data/localDataSource.kt

36 lines
711 B
Kotlin
Raw Normal View History

2025-01-27 11:40:37 +00:00
package org.example.data
2025-02-03 16:26:52 +00:00
import org.example.data.model.ShoesDTO
2025-01-27 11:40:37 +00:00
import org.example.data.model.UserDTO
2025-02-03 16:26:52 +00:00
val shoesList = listOf(
ShoesDTO(
shoesId = 1,
shoesName = "1",
shoesDescription = "123",
shoesUrl = "3",
category = "123",
price = 1.1
)
)
2025-01-27 11:40:37 +00:00
val userList = listOf(
UserDTO(
userId = 1,
firstName = "Andrey",
password = "123",
email = "test@mail.ru"
),
UserDTO(
userId = 2,
firstName = "Alexey",
password = "321",
email = "test2@mail.ru"
),
UserDTO(
userId = 3,
firstName = "Oleg",
password = "423",
email = "test3@mail.ru",
),
)