argos/backend/core/src/main/java/org/opencdmp/commons/types/descriptiontemplate/fielddata/LabelDataEntity.java

11 lines
328 B
Java
Raw Normal View History

2024-04-26 12:50:56 +02:00
package org.opencdmp.commons.types.descriptiontemplate.fielddata;
2024-01-30 15:31:03 +01:00
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
2024-01-30 15:31:03 +01:00
@XmlAccessorType(XmlAccessType.FIELD)
2024-01-31 09:44:48 +01:00
public class LabelDataEntity extends BaseFieldDataEntity {
2024-01-31 13:33:24 +01:00
public static final String XmlElementName = "labelData";
}