blob: fd0606570c791f5a10bcefabb88d186230f9aa6f (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
namespace Gestor.Model.Domain.Relatorios;
public class SinteticModelList
{
public string Hint { get; set; }
public List<object> Value { get; set; }
}
|