klass.model.meta.domain.dto.PropertyModifierDTO Maven / Gradle / Ivy
package klass.model.meta.domain.dto;
import java.time.*;
import java.util.*;
/**
* Auto-generated by {@link cool.klass.generator.dto.DataTransferObjectsGenerator}
*/
public class PropertyModifierDTO
{
private String classifierName;
private String propertyName;
private String keyword;
private DataTypePropertyDTO dataTypeProperty;
public String getClassifierName()
{
return this.classifierName;
}
public void setClassifierName(String classifierName)
{
this.classifierName = classifierName;
}
public String getPropertyName()
{
return this.propertyName;
}
public void setPropertyName(String propertyName)
{
this.propertyName = propertyName;
}
public String getKeyword()
{
return this.keyword;
}
public void setKeyword(String keyword)
{
this.keyword = keyword;
}
public DataTypePropertyDTO getDataTypeProperty()
{
return this.dataTypeProperty;
}
public void setDataTypeProperty(DataTypePropertyDTO dataTypeProperty)
{
this.dataTypeProperty = dataTypeProperty;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy