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