Skip to content

Commit

Permalink
[Feat] : RejectApplyRequest 기본생성자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Feb 10, 2024
1 parent d05fdf9 commit 0278d39
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

import kr.co.studyhubinu.studyhubserver.apply.domain.RejectEntity;
import lombok.Getter;
import lombok.NoArgsConstructor;

@Getter
@NoArgsConstructor
public class RejectApplyRequest {

private final Long studyId;
private final Long rejectedUserId;
private final String rejectReason;
private Long studyId;
private Long rejectedUserId;
private String rejectReason;

public RejectApplyRequest(Long studyId, Long rejectedUserId, String rejectReason) {
this.studyId = studyId;
Expand Down

0 comments on commit 0278d39

Please sign in to comment.