9 lines
432 B
C#
9 lines
432 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Serves as an abstract base class for patient observation values, extending <see cref="BasePatientObservation"/> to provide common functionality for representing measured or recorded clinical data associated with a patient observation.
|
|
/// </summary>
|
|
public abstract class BasePatientObservationValue : BasePatientObservation
|
|
{
|
|
public object Value { get; set; } = new();
|
|
} |