Skip to content

Commit

Permalink
πŸ‘”οΈ μ±„νŒ…λ°© 생성 Req, Res μ •μ˜(#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
jun108059 committed Jul 3, 2022
1 parent 623353c commit 2f92405
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package hexagonal.api.room.adapter.in.web.request;

import lombok.Getter;

@Getter
public class CreateRoomReq {
Long companyId;
Long adminId;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package hexagonal.api.room.adapter.in.web.response;

import lombok.Data;

@Data
public class CreateRoomRes {
Long id;
Long companyId;

public CreateRoomRes(Long id, Long companyId) {
this.id = id;
this.companyId = companyId;
}
}

0 comments on commit 2f92405

Please sign in to comment.