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