Bimba.git

ref: c66d69c69f5f0ed6426d6abc6638701e75f16064

app/src/main/java/xyz/apiote/bimba/czwek/dashboard/ui/voyage/VoyageViewModel.kt


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: Adam Evyčędo
//
// SPDX-License-Identifier: GPL-3.0-or-later

package xyz.apiote.bimba.czwek.dashboard.ui.voyage

import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel

class VoyageViewModel : ViewModel() {

	private val _text = MutableLiveData<String>().apply {
		value = "This is voyage Fragment"
	}
	val text: LiveData<String> = _text
}