30 lines
944 B
C#
30 lines
944 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using vita_asistente.Models;
|
|
|
|
namespace vita_asistente.Data.Models
|
|
{
|
|
public class Paciente : ApplicationUser
|
|
{
|
|
[StringLength(100)]
|
|
public string NombreContactoEmergencia { get; set; } = string.Empty;
|
|
|
|
[StringLength(50)]
|
|
public string TelefonoContactoEmergencia { get; set; } = string.Empty;
|
|
|
|
[StringLength(50)]
|
|
public string TipoSangre { get; set; } = string.Empty;
|
|
|
|
public bool TieneAlergiasMedicamentosas { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string AlergiasDescripcion { get; set; } = string.Empty;
|
|
|
|
public DateTime FechaRegistro { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates whether the patient account is active and can log in
|
|
/// </summary>
|
|
public bool IsActive { get; set; } = true; // Default to active
|
|
}
|
|
} |