summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios/ValorSintetico.cs
blob: df63ff59d7fa94700380802a2bf60683fe38fe97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Gestor.Model.Common;

namespace Gestor.Model.Domain.Relatorios;

public class ValorSintetico
{
	public string NomeRelatorio { get; set; }

	public string Indice { get; set; }

	public decimal Valor { get; set; }

	public string Unidate { get; set; }

	public string Porcentagem { get; set; }

	public string Formato { get; set; }

	public Sinal Sinal { get; set; }
}