package com.sjriley.zappit.vo;
import com.google.gson.annotations.SerializedName;
public class EmailRequest
{
private String code;
private String userid;
private String email;
@SerializedName ("long")
private double longitude;
private double lat;
public EmailRequest(String code, String userid, String email,
double longitude, double lat)
{
super();
this.code = code;
this.userid = userid;
this.email = email;
this.longitude = longitude;
this.lat = lat;
}
}