6 lines
207 B
C#
6 lines
207 B
C#
namespace VigilCare.Simulation;
|
|
|
|
public record PatientResponse(
|
|
Guid Id, string Mrn, string FirstName, string LastName,
|
|
DateOnly DateOfBirth, string Gender, string Status, DateTimeOffset CreatedAt);
|