1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.auto.lyric.ui.collect;
|
| import com.auto.lyric.base.model.BaseViewModel;
| import com.auto.lyric.retrofit.observable.LoadingHttpObserver;
|
| /**
| * Created by Runt (qingingrunt2010@qq.com) on 2022/5/29.
| */
| public class CollectViewModel extends BaseViewModel {
|
| public void getLrcList(LoadingHttpObserver<CollectListResult> observer){
|
| }
|
| }
|
|