package com.andexert.retrofitexample.model;
import com.google.gson.annotations.SerializedName;
import org.parceler.Parcel;
import java.io.Serializable;
/**
* Author : Chutaux Robin
* Date : 10/2/2014
*/
@Parcel
public class Sys
{
@SerializedName("country")
private String strCountry;
@SerializedName("sunrise")
private Long sunriseTime;
@SerializedName("sunset")
private Long sunsetTime;
public String getStrCountry()
{
return strCountry;
}
public void setStrCountry(String strCountry)
{
this.strCountry = strCountry;
}
public Long getSunriseTime()
{
return sunriseTime;
}
public Long getSunsetTime()
{
return sunsetTime;
}
}