com.salesmanager.shop.model.customer.optin.CustomerOptinEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.customer.optin;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Email;
public class CustomerOptinEntity extends CustomerOptin {
/**
*
*/
private static final long serialVersionUID = 1L;
private String firstName;
private String lastName;
@NotNull
@Email
private String email;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}