blob: 5147ba38f5ffd81d36b2f6d524178526d4637c7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using Gestor.Model.Common;
namespace Gestor.Model.Domain.Relatorios;
public class ParametrosTotalizacao
{
public long Id { get; set; }
public long IdUsuario { get; set; }
public Relatorio Relatorio { get; set; }
public string Campo { get; set; }
public string Header { get; set; }
public bool Ativa { get; set; }
}
|