Files
AlquilaFacil/Entidades/Notificacione.cs
2025-01-05 17:48:54 -03:00

28 lines
639 B
C#

using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Notificacione
{
public long Dnicliente { get; set; }
public long Dniremitente { get; set; }
public DateTime Fecha { get; set; }
public string Mensaje { get; set; } = null!;
public string Accion { get; set; } = null!;
public int Idpropiedad { get; set; }
public bool Leido { get; set; }
public virtual Cliente DniclienteNavigation { get; set; } = null!;
public virtual Cliente DniremitenteNavigation { get; set; } = null!;
public virtual Propiedade IdpropiedadNavigation { get; set; } = null!;
}