package com.application.zhangshi_app_android.ui;
|
|
import android.app.Application;
|
|
import androidx.annotation.NonNull;
|
|
import com.android.app_base.base.viewmodel.BaseViewModel;
|
import com.application.zhangshi_app_android.data.DataRepository;
|
|
/**
|
* @author Ljj
|
* @date 2023.06.06. 17:48
|
* @desc
|
*/
|
public class TestActivityViewModel extends BaseViewModel<DataRepository> {
|
private String text;
|
public TestActivityViewModel(@NonNull Application application) {
|
super(application);
|
}
|
|
@Override
|
protected DataRepository initModel() {
|
return null;
|
}
|
|
public String getText() {
|
return text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
}
|