blob: 83ace76ea64057fa445403970a164ca250077f3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
namespace Gestor.Model.Domain.Relatorios;
public class FiltroPersonalizado
{
public int Id { get; set; }
public string Nome { get; set; }
public string Propriedade { get; set; }
public Type Tipo { get; set; }
public string ValorIncial { get; set; }
public string ValorFinal { get; set; }
public string Descricao { get; set; }
public bool SemValor { get; set; }
public bool Diferente { get; set; }
}
|