summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios/SinteticModel.cs
blob: 2afa8f493724b112191a9a7d605fcc9ea6caf904 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Gestor.Model.Domain.Relatorios;

public class SinteticModel
{
	public string Hint { get; set; }

	public object Value { get; set; }

	public string DescriptionField { get; set; }
}