From 225aa1499e37faf9d38257caabbadc68d78b427e Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 12:29:41 -0300 Subject: decompiler.com --- Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs (limited to 'Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs') diff --git a/Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs b/Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs new file mode 100644 index 0000000..d232dbe --- /dev/null +++ b/Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs @@ -0,0 +1,18 @@ +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; } +} -- cgit v1.2.3