javaee.module.backend.models.person.AbstractPersonHelperDtoParent_1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-javaee-module Show documentation
Show all versions of common-javaee-module Show documentation
This Module contains common JavaEE Helper Classes.
The newest version!
package javaee.module.backend.models.person;
import javaee.module.backend.models.delete.AbstractDeleteHelperDto;
abstract class AbstractPersonHelperDtoParent_1< UserDto > extends AbstractDeleteHelperDto< UserDto > {
protected String lastName;
protected String firstName;
protected String middleName;
protected String primaryEmail;
protected String secondaryEmail;
protected String primaryContact;
protected String secondaryContact;
}