summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios/SinteticoFinanceiro.cs
blob: 3a07bc61dd9870e6b5205f277b6a40a66940d91e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.ComponentModel;
using Gestor.Model.Attributes;

namespace Gestor.Model.Domain.Relatorios;

public class SinteticoFinanceiro
{
	[Description("AGRUPAMENTO")]
	public string Agrupamento { get; set; }

	[Tipo("VALOR")]
	[Description("VALOR")]
	public decimal? Valor { get; set; }

	[Tipo("VALOR")]
	[Description("VALOR PAGO")]
	public decimal? ValorPago { get; set; }
}