Skip to content

Commit

Permalink
[feat] Date Create 응답 객체 변경 (For Amplitude) - #279
Browse files Browse the repository at this point in the history
  • Loading branch information
gardening-y committed Sep 22, 2024
1 parent 69fcc61 commit e91ed2d
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 org.dateroad.date.dto.response;

import lombok.AccessLevel;
import lombok.Builder;

@Builder(access = AccessLevel.PROTECTED)
public record DateCreateRes(
Long dateScheduleNum
) {
public static DateCreateRes of(final Long dateScheduleNum) {
return DateCreateRes.builder()
.dateScheduleNum(dateScheduleNum)
.build();
}
}

0 comments on commit e91ed2d

Please sign in to comment.