Skip to content

Instantly share code, notes, and snippets.

@javi-moralesf
Created April 30, 2015 16:56
Show Gist options
  • Save javi-moralesf/8d3e7cea6225a52d7aa3 to your computer and use it in GitHub Desktop.
Save javi-moralesf/8d3e7cea6225a52d7aa3 to your computer and use it in GitHub Desktop.
public class UserRegisterRequest {
final String regid;
final String os;
final String device;
public UserRegisterRequest(String regid, String os, String device) {
this.regid = regid;
this.os = os;
this.device = device;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment