9 lines
308 B
C#
9 lines
308 B
C#
namespace Application.Endpoints.Patients.ModifyPatient;
|
|
|
|
public class ModifyPatientCommand
|
|
{
|
|
public Guid Id { get; set; } = Guid.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
} |