blob: 392586ceb9514fcb71133118e5f3eeef9a43b388 (
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.Relatorios.Extrato;
public class SinteticoExtrato
{
public string Descricao { get; set; }
[Tipo("QUANTIDADE")]
[Description("TOTAL DE DOCUMENTOS")]
public int Total { get; set; }
}
|