9 lines
330 B
C#
9 lines
330 B
C#
namespace Entidades.Dto;
|
|
public class NotificacionDto {
|
|
public string Remitente { get; set; } ="";
|
|
public string Accion { get; set; } ="";
|
|
public string Receptor { get; set; } ="";
|
|
public string Mensaje { get; set; } ="";
|
|
public DateTime? Fecha{get; set;} =null;
|
|
public string Propiedad { get; set;} ="";
|
|
} |