mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 01:15:44 +01:00
15 lines
427 B
Java
15 lines
427 B
Java
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;
|
|
}
|