package ru.exorg.backend.model;
/**
* Created by IntelliJ IDEA.
* User: kate
* Date: 24-Apr-2011
* Time: 00:20:23
* To change this template use File | Settings | File Templates.
*/
public class RecommendedRouteForWeb {
private long id;
private String name;
private String description;
private String img;
public RecommendedRouteForWeb (final long id, final String name, final String description, final String imgUrl) {
this.id = id;
this.name = name;
this.description = description;
this.img = imgUrl;
}
public void setId(final long id) {
this.id = id;
}
public void setDescription (final String description) {
this.description = description;
}
public void setImg (final String imgUrl) {
this.img = imgUrl;
}
public long getId() {
return id;
}
public String getName () {
return name;
}
public String getDescription () {
return description;
}
public String getImg () {
return img;
}
}