Inicio del desarrollo del sistema de notificaciones
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user