File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
tuk-api/src/main/kotlin/nexters/tuk
application/proposal/dto/request Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import nexters.tuk.application.proposal.vo.ProposalPurposeInfo
55class ProposalCommand {
66 data class Propose (
77 val memberId : Long ,
8- val gatheringId : Long? ,
98 val purpose : ProposalPurposeInfo
109 )
1110}
Original file line number Diff line number Diff line change @@ -6,13 +6,11 @@ import nexters.tuk.application.proposal.vo.ProposalPurposeInfo
66class ProposalDto {
77 class Request {
88 data class Publish (
9- val gatheringId : Long? ,
109 val purpose : ProposalPurposeInfo ,
1110 ) {
1211 fun toCommand (memberId : Long ): ProposalCommand .Propose {
1312 return ProposalCommand .Propose (
1413 memberId = memberId,
15- gatheringId = gatheringId,
1614 purpose = purpose
1715 )
1816 }
You can’t perform that action at this time.
0 commit comments