Skip to content

Commit

Permalink
Merge branch 'main' into boban/secure-admin-graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
BobanL authored Jul 11, 2023
2 parents 40c5b59 + f09b3ff commit 3364c2d
Show file tree
Hide file tree
Showing 35 changed files with 1,026 additions and 361 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 3364c2d

Please sign in to comment.