diff options
Diffstat (limited to 'Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs')
| -rw-r--r-- | Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs | 18 |
1 files changed, 18 insertions, 0 deletions
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; } +} |