summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Common/PesquisaAvancada.cs
blob: 026b8c7ae2854690864f0b4755668b5e8f09ca52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Gestor.Model.Common;

namespace Gestor.Model.Domain.Common;

public class PesquisaAvancada
{
	public FiltroStatusDocumento Status { get; set; }

	public long IdCliente { get; set; }

	public long IdDocumento { get; set; }

	public long IdItem { get; set; }

	public long IdSinistro { get; set; }

	public string Nome { get; set; }

	public string Pesquisa { get; set; }
}