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