parent
5b5e4d27f8
commit
a5a69ef7d7
@ -0,0 +1,21 @@ |
||||
package com.github.catvod.bean.alist; |
||||
|
||||
import android.text.TextUtils; |
||||
|
||||
import com.google.gson.annotations.SerializedName; |
||||
|
||||
public class Param { |
||||
|
||||
@SerializedName("path") |
||||
private String path; |
||||
@SerializedName("pass") |
||||
private String pass; |
||||
|
||||
public String getPath() { |
||||
return TextUtils.isEmpty(path) ? "" : path; |
||||
} |
||||
|
||||
public String getPass() { |
||||
return TextUtils.isEmpty(pass) ? "" : pass; |
||||
} |
||||
} |
||||
Binary file not shown.
@ -1 +1 @@ |
||||
9eeae00749e17517c5041546a98418cd |
||||
4556ab64060bfdf40d0e6dcc0145862e |
||||
|
||||
Loading…
Reference in new issue