14 lines
375 B
Kotlin
14 lines
375 B
Kotlin
package com.example.rehabilitation
|
|
|
|
import androidx.lifecycle.MutableLiveData
|
|
import androidx.lifecycle.ViewModel
|
|
import com.example.rehabilitation.Sport.SportDayOneModel
|
|
|
|
class PatientViewModel: ViewModel() {
|
|
val token = MutableLiveData<String>()
|
|
|
|
|
|
val liveDaySportOne = MutableLiveData<SportDayOneModel>()
|
|
// val productList = MutableLiveData<List<Product>>()
|
|
|
|
} |