9 lines
287 B
C#
9 lines
287 B
C#
namespace HealthcareManagerUiWebAssem.Entities;
|
|
|
|
public class Patient
|
|
{
|
|
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;
|
|
} |