mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
29 lines
526 B
Java
29 lines
526 B
Java
package com.commafeed.frontend.model;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
public class Entries implements Serializable {
|
|
private String name;
|
|
private List<Entry> entries = Lists.newArrayList();
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public List<Entry> getEntries() {
|
|
return entries;
|
|
}
|
|
|
|
public void setEntries(List<Entry> entries) {
|
|
this.entries = entries;
|
|
}
|
|
|
|
}
|