10 lines
346 B
C#
10 lines
346 B
C#
namespace HealthcareManagerUiWebAssem.Entities;
|
|
|
|
public class Doctor
|
|
{
|
|
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;
|
|
public string Description { get; set; } = string.Empty;
|
|
} |