using Gestor.Model.Common; using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Common { public class PesquisaAvancada { 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; } public FiltroStatusDocumento Status { get; set; } public PesquisaAvancada() { } } }