Files
adas-core/adas-core.Domain/Models/Recording/Patient.cs
T
2026-06-26 10:29:23 +02:00

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;
}