using Gestor.Model.Common; using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios { public class ValorSintetico { public string Formato { get; set; } public string Indice { get; set; } public string NomeRelatorio { get; set; } public string Porcentagem { get; set; } public Gestor.Model.Common.Sinal Sinal { get; set; } public string Unidate { get; set; } public decimal Valor { get; set; } public ValorSintetico() { } } }