Skip to content

Commit

Permalink
feat: Add PullRequestDto
Browse files Browse the repository at this point in the history
  • Loading branch information
npole0103 committed Oct 17, 2022
1 parent a1d3884 commit c578848
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/kr/markdown/alreadyme/domain/dto/ReadmeItemDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ class UpdateReadmeText {
private String readmeText;
}

@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
class PullRequest {
@NotBlank
private String pullRequestUrl;
}

@Getter
@Setter
@Builder
Expand Down

0 comments on commit c578848

Please sign in to comment.