Skip to content

Commit

Permalink
[BE/#30] Feat : 이슈 상태 수정 요청 DTO 추가
Browse files Browse the repository at this point in the history
- ModifyIssueStatusRequestDto
  • Loading branch information
MuseopKim committed Jun 15, 2020
1 parent 0aa1289 commit 46d1220
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package com.codesquad.issuetracker.ragdoll.dto;

public class ModifyIssueStatusRequestDto {

private Long userId;

private boolean opened;

public ModifyIssueStatusRequestDto(Long userId, boolean opened) {
this.userId = userId;
this.opened = opened;
}

public Long getUserId() {
return userId;
}

public void setUserId(Long userId) {
this.userId = userId;
}

public boolean isOpened() {
return opened;
}

public void setOpened(boolean opened) {
this.opened = opened;
}
}

0 comments on commit 46d1220

Please sign in to comment.