summaryrefslogtreecommitdiff
path: root/Decompiler/Gestor.Application.Model.Ajuda/Boleto.cs
blob: d232dbe250e45b382f5c8529a9c621f5724e70cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
}