9 lines
272 B
C#
9 lines
272 B
C#
public record RegisterPatientRequest(
|
|
string FirstName,
|
|
string LastName,
|
|
DateOnly DateOfBirth,
|
|
string Gender,
|
|
BloodType? BloodType = null,
|
|
string? Allergies = null,
|
|
string? EmergencyContactName = null,
|
|
string? EmergencyContactPhone = null); |