mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
24 lines
521 B
Java
24 lines
521 B
Java
package com.commafeed.frontend.model;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
import lombok.Data;
|
|
|
|
import com.wordnik.swagger.annotations.ApiClass;
|
|
|
|
@SuppressWarnings("serial")
|
|
@XmlRootElement
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@ApiClass("Feed details")
|
|
@Data
|
|
public class FeedInfo implements Serializable {
|
|
|
|
private String url;
|
|
private String title;
|
|
|
|
}
|