Files
SCM-Manager/scm-webapp/src/main/java/sonia/scm/update/properties/V1Properties.java

15 lines
427 B
Java
Raw Normal View History

2019-06-03 15:24:19 +02:00
package sonia.scm.update.properties;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "properties")
public class V1Properties {
@XmlElement(name = "item")
private List<V1Property> properties;
}