11 lines
307 B
C#
11 lines
307 B
C#
namespace DocuMed.PWA.Models.Entities;
|
|
|
|
public class MedicalHistory
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Section { get; set; } = string.Empty;
|
|
public int Aag { get; set; }
|
|
public string CC { get; set; } = string.Empty;
|
|
public Gender Gender { get; set; }
|
|
|
|
} |