forked from Archives/Athou_commafeed
import OPML
This commit is contained in:
@@ -2,10 +2,12 @@ package com.commafeed.frontend.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Subscription implements Serializable {
|
||||
|
||||
private Long id;
|
||||
private String name;
|
||||
private String message;
|
||||
private int unread;
|
||||
|
||||
public Long getId() {
|
||||
@@ -32,4 +34,12 @@ public class Subscription implements Serializable {
|
||||
this.unread = unread;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user