Files
AlquilaFacil/Entidades/Notificacione.cs

26 lines
602 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 virtual Cliente DniclienteNavigation { get; set; } = null!;
public virtual Cliente DniremitenteNavigation { get; set; } = null!;
public virtual Propiedade IdpropiedadNavigation { get; set; } = null!;
}