blob: a3793e41d2556d36722322f660a33637f2b86ee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.ComponentModel;
namespace Gestor.Model.Domain.Relatorios.MetaSeguradora;
public class SinteticoMetaSeguradora
{
[Description("META ATINGIR")]
public decimal MetaAtingir { get; set; }
[Description("META CUMPRIDA")]
public decimal MetaCumprida { get; set; }
}
|