nilupeng
2022-01-30 fa67d4417ec6949183038f99dff517f5e3c7cda6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.runt.open.mvvm.data;
 
/**
 * My father is Object, ites purpose of 
 *
 * @purpose Created by Runt (qingingrunt2010@qq.com) on 2022/1/28.
 */
public class LoadingCmd {
    public CMD code;public String msg;
 
    public LoadingCmd(CMD code) {
        this(code,"");
    }
 
    public LoadingCmd(CMD code, String msg) {
        this.code = code;
        this.msg = msg;
    }
 
    public enum CMD{LOADING,DISSMISS}
}