using Gestor.Model.Attributes; using System; using System.ComponentModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.Cliente { public class SinteticoClientes { public string Descricao { get; set; } [Description("TOTAL DE CLIENTES")] [Tipo("QUANTIDADE")] public decimal Total { get; set; } public SinteticoClientes() { } } }