23 lines
839 B
C#
23 lines
839 B
C#
namespace line_gestao_api.Dtos;
|
|
|
|
public class NotificationDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Tipo { get; set; } = string.Empty;
|
|
public string Titulo { get; set; } = string.Empty;
|
|
public string Mensagem { get; set; } = string.Empty;
|
|
public DateTime Data { get; set; }
|
|
public DateTime? ReferenciaData { get; set; }
|
|
public int? DiasParaVencer { get; set; }
|
|
public bool Lida { get; set; }
|
|
public DateTime? LidaEm { get; set; }
|
|
public Guid? VigenciaLineId { get; set; }
|
|
public string? Cliente { get; set; }
|
|
public string? Linha { get; set; }
|
|
public string? Conta { get; set; }
|
|
public string? Usuario { get; set; }
|
|
public string? PlanoContrato { get; set; }
|
|
public DateTime? DtEfetivacaoServico { get; set; }
|
|
public DateTime? DtTerminoFidelizacao { get; set; }
|
|
}
|