file-transformer-base/src/main/java/eu/eudat/file/transformer/models/user/UserContactInfoFileTransfor...

45 lines
720 B
Java

package eu.eudat.file.transformer.models.user;
import eu.eudat.file.transformer.enums.ContactInfoType;
import java.util.UUID;
public class UserContactInfoFileTransformerModel {
private UUID id;
private String value;
private ContactInfoType type;
private int ordinal;
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public ContactInfoType getType() {
return type;
}
public void setType(ContactInfoType type) {
this.type = type;
}
public int getOrdinal() {
return ordinal;
}
public void setOrdinal(int ordinal) {
this.ordinal = ordinal;
}
}