rama creada apartir de master en j
This commit is contained in:
@@ -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}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user