using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios { public class SinteticModel { public string DescriptionField { get; set; } public string Hint { get; set; } public object Value { get; set; } public SinteticModel() { } } }