using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios { public class SinteticModelList { public string Hint { get; set; } public List Value { get; set; } public SinteticModelList() { } } }