You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
24 lines
525 B
package com.github.zxbu.webdavteambition.model; |
|
|
|
public class ShareTokenRequest { |
|
private String share_id; |
|
private String share_pwd; |
|
|
|
public String getShare_id() { |
|
return share_id; |
|
} |
|
|
|
public ShareTokenRequest setShare_id(String share_id) { |
|
this.share_id = share_id; |
|
return this; |
|
} |
|
|
|
public String getShare_pwd() { |
|
return share_pwd; |
|
} |
|
|
|
public ShareTokenRequest setShare_pwd(String share_pwd) { |
|
this.share_pwd = share_pwd; |
|
return this; |
|
} |
|
}
|
|
|