Skip to content

Instantly share code, notes, and snippets.

@mfaisalkhatri
Created September 9, 2022 15:53
Show Gist options
  • Save mfaisalkhatri/12a0c63600895b95108a41fc63f27261 to your computer and use it in GitHub Desktop.
Save mfaisalkhatri/12a0c63600895b95108a41fc63f27261 to your computer and use it in GitHub Desktop.
Register User class with Builder Pattern using Lombok
@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