15 lines
432 B
C#
15 lines
432 B
C#
namespace adas_core.Domain.Models.Recording;
|
|
|
|
/// <summary>
|
|
/// Represents a patient entity within the system, encapsulating patient-related data and behavior.
|
|
/// </summary>
|
|
public class Patient
|
|
{
|
|
/// <summary>
|
|
/// PatientNumber
|
|
/// </summary>
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string LastName { get; set; } = string.Empty;
|
|
} |