Files
adas-core/adas-core.Domain/Models/PatientAllergiesValue.cs
T

16 lines
311 B
C#

namespace adas_core.Domain.Models;
public class PatientAllergiesValue
{
public string? Type { get; set; }
public string? Value { get; set; }
public string? Notes { get; set; }
public override string ToString()
{
return $"Tipo: {Type}, Valor: {Value}, Notas: {Notes}";
}
}