Files
Athou_commafeed/src/main/java/com/commafeed/frontend/model/UnreadCount.java
2015-07-09 16:08:31 +02:00

28 lines
578 B
Java

package com.commafeed.frontend.model;
import java.io.Serializable;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import lombok.Data;
@SuppressWarnings("serial")
@ApiModel("Unread count")
@Data
public class UnreadCount implements Serializable {
private long feedId;
private long unreadCount;
private Date newestItemTime;
public UnreadCount() {
}
public UnreadCount(long feedId, long unreadCount, Date newestItemTime) {
this.feedId = feedId;
this.unreadCount = unreadCount;
this.newestItemTime = newestItemTime;
}
}