Skip to content

Commit

Permalink
feat: 체중 변경 요청 dto 구현 #8
Browse files Browse the repository at this point in the history
  • Loading branch information
shimbaa committed Sep 5, 2024
1 parent 6d2ef8c commit 0bda683
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package buddyguard.mybuddyguard.weight.dto;

import java.time.LocalDateTime;

public record WeightUpdateRequest(
LocalDateTime recordedAt,
Double weight
) {

}

0 comments on commit 0bda683

Please sign in to comment.