namespace adas_core.Domain.Models;
///
/// Represents a value related to a patient's allergies.
///
public class PatientAllergiesValue
{
public string? Type { get; set; }
public string? Value { get; set; }
public string? Notes { get; set; }
///
/// Returns a formatted string representation of the object, including its Type, Value, and Notes properties.
///
/// A string containing the Type, Value, and Notes properties of the object.
public override string ToString()
{
return $"Tipo: {Type}, Valor: {Value}, Notas: {Notes}";
}
}