Skip to content

Commit

Permalink
codesquad-issue-team-05#80 feat : 이슈 assignee 수정 api 구현
Browse files Browse the repository at this point in the history
- 수정이지만 해당 issueID 로 delete 후 request 정보를 바탕으로 재 등록하는 방식
  • Loading branch information
DOEKYONG committed Aug 14, 2023
1 parent a5a267a commit 5f105d0
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package codesquad.issueTracker.issue.dto;

import java.util.List;

import lombok.Getter;

@Getter
public class ModifyAssigneeRequestDto {
private List<Long> assignees;
}

0 comments on commit 5f105d0

Please sign in to comment.