Skip to content

Commit

Permalink
[feat] #19 대기자 응답 형식
Browse files Browse the repository at this point in the history
  • Loading branch information
nykoh2001 committed Feb 13, 2024
1 parent 2804d8e commit 35a40d3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/org/harang/server/dto/response/WaitingResponse.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package org.harang.server.dto.response;

import lombok.Builder;
import lombok.Getter;

@Getter
public class WaitingResponse {
private Long memberId;
private String nickname;

@Builder
public WaitingResponse(Long memberId, String nickname) {
this.memberId = memberId;
this.nickname = nickname;
}
}

0 comments on commit 35a40d3

Please sign in to comment.