Skip to content

Commit

Permalink
Added missing field in dto
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia committed Nov 25, 2024
1 parent 0887663 commit cab7aa1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package ca.bc.gov.app.dto.legacy;

import java.time.LocalDate;
import java.util.List;

public record ForestClientDetailsDto (
Expand All @@ -17,7 +18,11 @@ public record ForestClientDetailsDto (
String wcbFirmNumber,
String ocgSupplierNmbr,
String clientComment,
LocalDate clientCommentUpdateDate,
String clientCommentUpdateUser,
String goodStandingInd,
LocalDate birthdate,

List<ForestClientLocationDto> addresses,
List<ForestClientContactDto> contacts
) {
Expand Down

0 comments on commit cab7aa1

Please sign in to comment.