Created
September 9, 2022 15:53
-
-
Save mfaisalkhatri/12a0c63600895b95108a41fc63f27261 to your computer and use it in GitHub Desktop.
Register User class with Builder Pattern using Lombok
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Getter | |
@Builder | |
public class RegisterUserWithBuilder { | |
private String firstName; | |
private String lastName; | |
private String address; | |
private String city; | |
private String state; | |
private String country; | |
private String mobileNumber; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment