4 lines
174 B
C#
4 lines
174 B
C#
public record PatientResponse(
|
|
Guid Id, string Mrn, string FirstName, string LastName,
|
|
DateOnly DateOfBirth, string Gender, string Status, DateTimeOffset CreatedAt);
|