Files
Athou_commafeed/src/main/java/com/commafeed/frontend/model/SubscriptionRequest.java

36 lines
593 B
Java
Raw Normal View History

2013-03-24 13:11:05 +01:00
package com.commafeed.frontend.model;
import java.io.Serializable;
public class SubscriptionRequest implements Serializable {
private String url;
private String title;
private String categoryId;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getCategoryId() {
return categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
}