using System.ComponentModel; using Gestor.Model.Attributes; using Gestor.Model.Domain.Seguros; namespace Gestor.Model.Domain.Relatorios.Classificacao; public class Classificacao { [Tipo("INVALID")] public Gestor.Model.Domain.Seguros.Cliente EntidadeCliente { get; set; } [Tipo("INVALID")] public bool Selecionado { get; set; } [Description("NOME")] public string Nome { get; set; } [Description("PREMIO LIQUIDO")] public string Premioliquido { get; set; } [Description("COMISSÃO")] public string Comissao { get; set; } [Description("RESULTADO")] public string Resultado { get; set; } [Description("GERAL")] public string Geral { get; set; } [Description("ATIVO")] public string Ativo { get; set; } }