28 lines
639 B
C#
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!;
|
|
}
|