Skip to content

Commit

Permalink
Merge branch 'main' into nac/5419-track-bulk-uploader-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancrtr committed Jul 11, 2023
2 parents 4e11732 + f09b3ff commit 1b35cb7
Show file tree
Hide file tree
Showing 36 changed files with 1,027 additions and 362 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package gov.cdc.usds.simplereport.api.converter;

import java.time.ZonedDateTime;
import lombok.Builder;
import lombok.Getter;

@Builder
@Getter
public class ConvertToSpecimenProps {
private String specimenCode;
private String specimenName;
private String collectionCode;
private String collectionName;
private String id;
private String identifier;
private ZonedDateTime collectionDate;
private ZonedDateTime receivedTime;
}
Loading

0 comments on commit 1b35cb7

Please sign in to comment.