Skip to content

Commit

Permalink
fix: 충돌해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ay-eonii committed Nov 25, 2024
2 parents 1f50017 + 98b19c3 commit ae7ebf6
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package mouda.backend.moim.infrastructure.dto;

import lombok.Getter;

@Getter
public class ChamyoCountResponse {

private final Long moimId;
private final Integer count;

public ChamyoCountResponse(Long moimId, Long count) {
this.moimId = moimId;
this.count = count.intValue();
}
}

0 comments on commit ae7ebf6

Please sign in to comment.