summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.BI/AtalhosCalculo.cs
blob: f12f5be686c7fc6036c95ebd2421f985a4fa0d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.ComponentModel;
using Gestor.Model.Attributes;

namespace Gestor.Model.Domain.BI;

public class AtalhosCalculo
{
	public string Agrupamento { get; set; }

	[Tipo("QUANTIDADE")]
	[Description("COTAÇÕES")]
	public int Cotacoes { get; set; }
}