Skip to content

Commit

Permalink
[Feat] #109 Add DTOs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyunuk17 committed Aug 31, 2024
1 parent 3636659 commit 2eda61e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.shinhan_hackathon.the_family_guardian.domain.transaction.dto;

public record AccountBalanceRequest(
String accountNumber
) {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.shinhan_hackathon.the_family_guardian.domain.transaction.dto;

import lombok.Builder;

@Builder
public record AccountBalanceResponse(
String accountNumber,
String transactionBalance
) {
}

0 comments on commit 2eda61e

Please sign in to comment.