using System; namespace Gestor.Application.Model.Ajuda; public class Boleto { public long IdBoleto { get; set; } public DateTime Vencimento { get; set; } public DateTime? Pagamento { get; set; } public decimal Valor { get; set; } public string Historico { get; set; } public string Nota { get; set; } }