rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -1,5 +1,8 @@
namespace adas_core.Domain.Models;
/// <summary>
/// Represents a value related to a patient's allergies.
/// </summary>
public class PatientAllergiesValue
{
public string? Type { get; set; }
@@ -9,8 +12,12 @@ public class PatientAllergiesValue
public string? Notes { get; set; }
/// <summary>
/// Returns a formatted string representation of the object, including its Type, Value, and Notes properties.
/// </summary>
/// <returns>A string containing the Type, Value, and Notes properties of the object.</returns>
public override string ToString()
{
return $"Tipo: {Type}, Valor: {Value}, Notas: {Notes}";
}
{
return $"Tipo: {Type}, Valor: {Value}, Notas: {Notes}";
}
}