summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.MetaSeguradora/MetaSeguradoraRelatorio.cs
blob: 64c1bfa01fd4fd93581ecaaaf4f4a45c1697521a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.ComponentModel;
using Gestor.Model.Attributes;

namespace Gestor.Model.Domain.Relatorios.MetaSeguradora;

public class MetaSeguradoraRelatorio
{
	[Tipo("INVALID")]
	public bool Selecionado { get; set; }

	[Tipo("INVALID")]
	public long Id { get; set; }

	[Description("SEGURADORA")]
	public string Seguradora { get; set; }

	[Tipo("VALOR")]
	[Description("META ATINGIR")]
	public decimal MetaAtingir { get; set; }

	[Tipo("VALOR")]
	[Description("META CUMPRIDA")]
	public decimal MetaCumprida { get; set; }
}