Skip to content

Commit

Permalink
[refactor/#185] Dto Object 직렬화, 역직렬화 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
whitem4rk committed Dec 21, 2023
1 parent 62e15f6 commit 0c246db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
public class ProfileDetailDto {

private String major;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
public class ProfileIntroDto {

private String introduce;
Expand Down

0 comments on commit 0c246db

Please sign in to comment.