Created
April 2, 2023 10:58
-
-
Save inspirit941/4923d7b029f4e251ae4546b55d7056e1 to your computer and use it in GitHub Desktop.
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
| package com.witherview.keycloak.oauth.account; | |
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | |
| import lombok.Getter; | |
| import lombok.Setter; | |
| public class AccountDTO { | |
| @Getter @Setter | |
| public static class LoginValidateDTO { | |
| private String userId; | |
| private String password; | |
| } | |
| @Getter @Setter @JsonIgnoreProperties(ignoreUnknown = true) | |
| public static class ResponseLogin { | |
| private String id; | |
| private String email; | |
| private String name; | |
| private String profileImg; | |
| private String mainIndustry; | |
| private String subIndustry; | |
| private String mainJob; | |
| private String subJob; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment