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; } }