HeavyLiveAllRequest.java
413 Bytes
package com.cnlive.goldenline.model.request;
/**
* Created by Lynn on 4/13/2017.
*/
public class HeavyLiveAllRequest {
String userId;
public HeavyLiveAllRequest() {
}
public HeavyLiveAllRequest(String userId) {
this.userId = userId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}