namespace adas_core.Domain.Models.Recording; /// /// Represents a patient entity within the system, encapsulating patient-related data and behavior. /// public class Patient { /// /// PatientNumber /// public string Id { get; set; } = string.Empty; public string FirstName { get; set; } = string.Empty; public string LastName { get; set; } = string.Empty; }