Skip to content

Commit

Permalink
codesquad-issue-team-05#80 feat : issue 전체 조회에서 이슈들 상태변경 api 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
DOEKYONG committed Aug 14, 2023
1 parent db405cc commit 9df8669
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package codesquad.issueTracker.issue.dto;

import java.util.List;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class ModifyIssueStatusRequestDto {
private String status;
private List<Long> issueIds;

}

0 comments on commit 9df8669

Please sign in to comment.